We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63070e0 commit 24dfa8eCopy full SHA for 24dfa8e
.github/workflows/link-check-schedule.yml
@@ -1,12 +1,17 @@
1
name: Check links on schedule
2
on:
3
schedule:
4
- - cron: "30 15 * * *" # Runs every Monday at 09:00 AM
+ - cron: "59 23 * * 0" # Runs every Sunday at 23:59
5
+ push: # for testing purposes, do not merge
6
jobs:
7
linkcheck:
8
runs-on: ubuntu-latest
9
steps:
10
- uses: actions/checkout@v4
11
- uses: filiph/[email protected]
12
+ id: check_links
13
with:
- arguments: https://www.scaleway.com/en/docs/
14
+ arguments: https://www.scaleway.com/en/docs/ >> $GITHUB_OUTPUT
15
+ - name: Print output
16
+ run: |
17
+ echo "${{steps.check_links.outputs.*}}"
0 commit comments