fix: upgrade, fix main menu #121
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
on: | |
schedule: | |
- cron: 0 0 * * SUN # every monday | |
repository_dispatch: # run manually | |
types: [check-link] | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
name: Broken Link Check | |
jobs: | |
broken-link-checker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get GH Pages URL | |
id: gh_pages_url | |
uses: actions/github-script@v5 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
let result = await github.request('GET /repos/:owner/:repo/pages', { | |
owner: context.repo.owner, | |
repo: context.repo.repo | |
}); | |
console.log(result.data.html_url); | |
return result.data.html_url | |
result-encoding: string | |
- name: Check broken links | |
uses: ruzickap/action-my-broken-link-checker@v2 | |
with: | |
url: ${{ steps.gh_pages_url.outputs.result }} | |
cmd_params: '--buffer-size=8192 --max-connections=10 --color=always --header="User-Agent:curl/7.54.0" --timeout=20 --exclude=(.*linkedin.*|.*twitter.*|.*hetzner.*)' |