Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: do not warn for redirects back to us #809

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/broken-links-and-wiki.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,20 +64,20 @@ jobs:
force: true

- name: Check the README for broken links
uses: becheran/mlc@v0.16.3
uses: becheran/mlc@v0.17.0
with:
args: README.md
args: --do-not-warn-for-redirect-to "http*://github.com/Code-Inspect/*,http*://code-inspect.github.io/*" README.md

- name: Publish the Wiki
uses: Andrew-Chen-Wang/github-wiki-action@v4
# we do not need to republish if nothing changes furthermore, do not publish on PR as this should be done by the push on main!
# We do not need to republish if nothing changes. Furthermore, do not publish on PR as this should be done by the push on main!
if: ${{ (github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/main')) && !failure() }}
with:
path: "wiki/"
token: ${{ secrets.GH_DEPLOY_WIKI }}

- name: Check the Wiki pages for broken links
uses: becheran/mlc@v0.16.3
uses: becheran/mlc@v0.17.0
if: ${{ always() && !failure() }}
with:
args: wiki/
args: --do-not-warn-for-redirect-to "http*://github.com/Code-Inspect/*,http*://code-inspect.github.io/*" wiki/
2 changes: 1 addition & 1 deletion wiki/Linting and Testing.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
For the latest code-coverage information, see [codecov.io](https://codecov.io/gh/Code-Inspect/flowr), for the latest benchmark results, see the [benchmark results](https://code-inspect.github.io/flowr/wiki/stats/benchmark) wiki page.
For the latest code-coverage information, see [codecov.io](https://app.codecov.io/gh/Code-Inspect/flowr), for the latest benchmark results, see the [benchmark results](https://code-inspect.github.io/flowr/wiki/stats/benchmark) wiki page.

- [Testing Suites](#testing-suites)
- [Functionality Tests](#functionality-tests)
Expand Down
Loading