doc, refactor: let logos play ping ping (closes #255) #1
Workflow file for this run
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
name: check for broken links | |
'on': | |
push: | |
paths: | |
- '**/*.md' | |
- 'wiki/**' | |
pull_request: | |
types: [ opened, synchronize ] | |
branches: [ main ] | |
workflow_dispatch: | |
schedule: | |
# every monday at night | |
- cron: '0 1 * * 1' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check the README for broken links | |
uses: Wandalen/[email protected] | |
with: | |
action: becheran/[email protected] | |
with: | | |
args: README.md | |
attempt_limit: 3 | |
attempt_delay: 2000 | |
- name: Check the wiki pages for broken links | |
uses: Wandalen/[email protected] | |
if: ${{ always() && !failure() }} | |
with: | |
action: becheran/[email protected] | |
with: | | |
args: wiki/ | |
attempt_limit: 3 | |
attempt_delay: 2000 | |