We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b991e8 commit 7a5cd87Copy full SHA for 7a5cd87
1 file changed
.github/workflows/ci.yml
@@ -107,7 +107,8 @@ jobs:
107
108
check-version:
109
# * Only on PRs into dev: prevent accidental version bumps.
110
- if: github.event_name == 'pull_request' && github.base_ref == 'dev'
+ # This check is skipped for the automated post-release merge from master back to dev.
111
+ if: github.event_name == 'pull_request' && github.base_ref == 'dev' && github.head_ref != 'master'
112
name: Check for accidental version bump
113
runs-on: ubuntu-latest
114
steps:
0 commit comments