deploy: buckets/web-private@85134b725d250b1a17c2ea4f004b747c3d708caf #90
This file contains 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
# This file lives in the master branch in overlay/.github/ | |
name: Check for broken links | |
on: | |
push: | |
schedule: | |
- cron: '0 22 * * 0' | |
jobs: | |
check: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install | |
run: | | |
sudo apt-get update -q | |
sudo apt-get install -y linkchecker | |
- name: Wait for publish to complete | |
run: | | |
sleep 60 | |
- name: Check | |
run: | | |
linkchecker www.budgetwithbuckets.com --no-status --no-warnings --check-extern --timeout=10 --ignore-url '^https://github.com/buckets/application/issues/' |