Have URLs periodically checked #12
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: Periodic URL Check | |
on: | |
pull_request: | |
schedule: | |
- cron: '*/2 * * * *' | |
jobs: | |
set-up: | |
name: Load user automation choices | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Load environment from YAML | |
uses: doughepi/[email protected] | |
with: | |
files: config_automation.yml # Pass a space-separated list of configuration files. Rightmost files take precedence. | |
# Delete the branch if this has been run before | |
- name: Delete branch locally and remotely | |
run: git push origin --delete preview-${{ github.event.pull_request.number }} || echo "No branch to delete" | |
- name: Make the branch fresh | |
run: | | |
git config --global --add safe.directory $GITHUB_WORKSPACE | |
git config --global user.email "[email protected]" | |
git config --global user.name "jhudsl-robot" | |
branch_name='preview-${{ github.event.pull_request.number }}' | |
echo branch doesnt exist | |
git checkout -b $branch_name || echo branch exists | |
git push --set-upstream origin $branch_name | |
outputs: | |
toggle_url_check_periodically: "${{ env.URL_CHECK_PERIODICALLY }}" | |
url-check: | |
name: Check URLs | |
needs: set-up | |
if: ${{needs.yaml-check.outputs.toggle_url_check_periodically == 'yes'}} | |
uses: jhudsl/ottr-reports/.github/workflows/report-maker.yml@main | |
with: | |
check_type: urls | |
error_min: 0 | |
gh_pat: secrets.GH_PAT |