Skip to content

Commit

Permalink
ci(check-links): skip kuma pull requests correctly (#1655)
Browse files Browse the repository at this point in the history
* ci(check-links): skip kuma pull requests correctly

It was using an exact match not a prefix

Signed-off-by: Charly Molter <[email protected]>
  • Loading branch information
lahabana authored Feb 14, 2024
1 parent ccc3a51 commit b2087d5
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
steps:
- uses: actions/setup-go@v4
- run: |
go install github.com/raviqqe/muffet/[email protected].2
go install github.com/raviqqe/muffet/[email protected].3
- name: Wait for Pages changed to be neutral
uses: fountainhead/[email protected]
id: waitForCheck
Expand All @@ -47,8 +47,7 @@ jobs:
$(go env GOPATH)/bin/muffet \
${URL} \
--buffer-size 8192 \
--exclude 'https://github.com/kumahq/kuma/pull' \
--exclude 'https://github.com/kumahq/kuma/pull' \
--exclude 'https://github.com/(/)?kumahq/kuma/pull/.*' \
--exclude 'https://github.com/spiffe/spiffe/blob/main/standards/X509-SVID.md.*' \
--exclude ${URL}/docs/1. \
--exclude 127.0.0.1 \
Expand All @@ -65,8 +64,7 @@ jobs:
$(go env GOPATH)/bin/muffet \
${URL}/docs/dev \
--buffer-size 8192 \
--exclude 'https://github.com/kumahq/kuma/pull' \
--exclude 'https://github.com/kumahq/kuma/pull' \
--exclude 'https://github.com/(/)?kumahq/kuma/pull/.*' \
--exclude 'https://github.com/spiffe/spiffe/blob/main/standards/X509-SVID.md.*' \
--exclude 127.0.0.1 \
--exclude https://cloudsmith.io/~kong/repos \
Expand Down

0 comments on commit b2087d5

Please sign in to comment.