Audit Links using AreYouOk #82
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: Audit Links using AreYouOk | |
on: | |
workflow_dispatch: | |
schedule: | |
# At 06:00 AM, every 30 days | |
- cron: '0 6 */30 * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Download & Run AreYouOk | |
run: | | |
wget -q https://github.com/Bhupesh-V/areyouok/releases/latest/download/areyouok-linux-amd64 | |
chmod +x areyouok-linux-amd64 | |
./areyouok-linux-amd64 -i=_layouts,.git,_site,README.md,build.py,USAGE.md -r=github | |
- name: Create Job Summary | |
run: cat report.github >> $GITHUB_STEP_SUMMARY |