Skip to content

Commit

Permalink
📝 (deadlink_checker.yml): change default branch name from 'master' to…
Browse files Browse the repository at this point in the history
… 'main' to align with updated naming conventions

🔧 (deadlink_checker.yml): update cron schedule to run the job everyday at 9:00 AM for deadlink checking process
  • Loading branch information
soumendrak committed Sep 13, 2024
1 parent 52bdf43 commit 31c74c5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/deadlink_checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ name: Check Markdown links
on:
push:
branches:
- master
- main
pull_request:
schedule:
# Run everyday at 9:00 AM (See https://pubs.opengroup.org/onlinepubs/9699919799/utilities/crontab.html#tag_20_25_07)
- cron: "*/5 * * * *"
# Run everyday at 9:00 AM (See https://pubs.opengroup.org/onlinepubs/9699919799/utilities/crontab.html#tag_20_25_07)
- cron: "0 9 * * *"

jobs:
markdown-link-check:
Expand Down

0 comments on commit 31c74c5

Please sign in to comment.