Skip to content

Commit

Permalink
Try to fix regexp
Browse files Browse the repository at this point in the history
  • Loading branch information
moisseev committed May 10, 2024
1 parent 80498c0 commit ffff0dd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
INPUT_PAGES_PATH: ./_site-root/
INPUT_CMD_PARAMS: >
--buffer-size=8192 --max-connections=10 --color=always --skip-tls-verification
--exclude="https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}/doc/lua/((lua|rspamd)_.+|ucl).html"
--exclude="^https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}/doc/lua/((lua|rspamd)_.+|ucl).html$"
INPUT_DEBUG: true
run: |
wget -qO- https://raw.githubusercontent.com/ruzickap/action-my-broken-link-checker/v2/entrypoint.sh | bash
Expand All @@ -41,5 +41,7 @@ jobs:
with:
url: https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}
pages_path: ./_site-root/
cmd_params: --buffer-size=8192 --max-connections=10 --color=always --skip-tls-verification --header="User-Agent:curl/7.54.0" --exclude="https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}/doc/lua/rspamd_.+\\.html"
cmd_params: >
--buffer-size=8192 --max-connections=10 --color=always --skip-tls-verification --header="User-Agent:curl/7.54.0"
--exclude="https://${{ github.repository_owner }}[.]github[.]io/${{ github.event.repository.name }}/doc/lua/rspamd_.+[.]html"
debug: true

0 comments on commit ffff0dd

Please sign in to comment.