Skip to content

Commit 77424ad

Browse files
authored
Fix job suppressions (#299)
1 parent 147e3e3 commit 77424ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ jobs:
5656

5757
markdown-link-check:
5858
# release branches are excluded to avoid unnecessary maintenance if external links break
59-
if: ${{ !startsWith(github.ref_name, 'v') }}
59+
if: ${{ !startsWith(github.ref_name, 'release/') }}
6060
uses: ./.github/workflows/reusable-markdown-link-check.yml
6161

6262
misspell-check:
6363
# release branches are excluded to avoid unnecessary maintenance if new misspellings are added
6464
# to the misspell dictionary
65-
if: ${{ !startsWith(github.ref_name, 'v') }}
65+
if: ${{ !startsWith(github.ref_name, 'release/') }}
6666
uses: ./.github/workflows/reusable-misspell-check.yml
6767

6868
publish-snapshots:

0 commit comments

Comments
 (0)