Skip to content

Commit 24dfa8e

Browse files
committed
feat(gen): test updated actions workflow
1 parent 63070e0 commit 24dfa8e

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed
Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
name: Check links on schedule
22
on:
33
schedule:
4-
- cron: "30 15 * * *" # Runs every Monday at 09:00 AM
4+
- cron: "59 23 * * 0" # Runs every Sunday at 23:59
5+
push: # for testing purposes, do not merge
56
jobs:
67
linkcheck:
78
runs-on: ubuntu-latest
89
steps:
910
- uses: actions/checkout@v4
1011
- uses: filiph/[email protected]
12+
id: check_links
1113
with:
12-
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

Comments
 (0)