Fix job suppressions (#5872)

This commit is contained in:
Trask Stalnaker 2022-04-18 19:58:17 -07:00 committed by GitHub
parent 949abadedf
commit 0a0e10b1f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@ jobs:
# release branches are excluded
# because any time a new library version is released to maven central it can fail
# which requires unnecessary release branch maintenance, especially for patches
if: ${{ !startsWith(github.ref_name, 'v') }}
if: ${{ !startsWith(github.ref_name, 'release/') }}
uses: ./.github/workflows/reusable-test-latest-deps.yml
secrets:
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
@ -44,7 +44,7 @@ jobs:
# release branches are excluded
# because any time a new library version is released to maven central it can fail
# which requires unnecessary release branch maintenance, especially for patches
if: ${{ !startsWith(github.ref_name, 'v') }}
if: ${{ !startsWith(github.ref_name, 'release/') }}
uses: ./.github/workflows/reusable-muzzle.yml
gradle-plugins:
@ -57,13 +57,13 @@ jobs:
# release branches are excluded to avoid unnecessary maintenance if external links break
# (and also because the README.md javaagent download link has to be updated on release branches
# before the release download has been published)
if: ${{ !startsWith(github.ref_name, 'v') }}
if: ${{ !startsWith(github.ref_name, 'release/') }}
uses: ./.github/workflows/reusable-markdown-link-check.yml
misspell-check:
# release branches are excluded to avoid unnecessary maintenance if new misspellings are added
# to the misspell dictionary
if: ${{ !startsWith(github.ref_name, 'v') }}
if: ${{ !startsWith(github.ref_name, 'release/') }}
uses: ./.github/workflows/reusable-misspell-check.yml
publish-snapshots: