Skip to content

Commit

Permalink
Run Links Validator workflow on a schedule
Browse files Browse the repository at this point in the history
We don't need this workflow to be run on every push. It doesn't make sense to block merging something because a link is down. Once a week seems good enough for now.
  • Loading branch information
simeg authored Jan 2, 2021
1 parent bfe7a73 commit 816ca9a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/links.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Links

on: [push, pull_request]
on:
schedule:
# Run at 00:00 UTC every Sunday
- cron: '0 0 * * */7'

env:
FORCE_COLOR: 1
Expand Down

0 comments on commit 816ca9a

Please sign in to comment.