Merge pull request #37252 from vespa-engine/arnej/configurable-onnx-o… #12413
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Link checker | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| types: [opened, synchronize, reopened, labeled] | |
| schedule: | |
| - cron: "0 2 * * 1-5" | |
| jobs: | |
| test: | |
| if: >- | |
| github.event_name != 'pull_request' || | |
| contains(github.event.pull_request.labels.*.name, 'run-link-check') | |
| uses: vespa-engine/gh-actions/.github/workflows/jekyll-link-checker.yml@main | |
| secrets: | |
| github-app-id: ${{ secrets.LINK_CHECKER_APP_ID }} | |
| github-app-priv-key: ${{ secrets.LINK_CHECKER_PRIVATE_KEY }} | |
| with: | |
| ignore-urls: |- | |
| /slack.vespa.ai/ | |
| /localhost:8080/ | |
| /127.0.0.1:3000/ | |
| /favicon.svg/ | |
| /main.jsx/ | |
| ignore-files: |- | |
| /fnet/index.html/ | |
| /client/js/app/node_modules/ | |
| swap-urls: |- | |
| (.*).md:\1.html |