mirror of
https://github.com/chatmail/core.git
synced 2026-07-11 13:33:09 +03:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
24 lines
510 B
YAML
24 lines
510 B
YAML
# Check that PRs are made against the -dev version.
|
|
#
|
|
# If this fails, push commit to update the version to -dev to main.
|
|
|
|
name: Check for -dev version
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
check_dev_version:
|
|
name: Check that current version ends with -dev
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v7
|
|
with:
|
|
show-progress: false
|
|
persist-credentials: false
|
|
|
|
- name: Run version-checking script
|
|
run: scripts/check-dev-version.py
|