Fix job suppressions (#299)
This commit is contained in:
parent
147e3e3b54
commit
77424ad1bf
|
|
@ -56,13 +56,13 @@ jobs:
|
|||
|
||||
markdown-link-check:
|
||||
# release branches are excluded to avoid unnecessary maintenance if external links break
|
||||
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:
|
||||
|
|
|
|||
Loading…
Reference in New Issue