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 515d108 commit bf72445Copy full SHA for bf72445
.github/workflows/check_redirects.yml
@@ -0,0 +1,24 @@
1
+name: Check subdomain and other redirects
2
+on:
3
+ schedule:
4
+ - cron: '32 5 * * 0'
5
+ # * * * * *
6
+ # │ │ │ │ └─ 0-6 day of the week (or SUN-SAT)
7
+ # │ │ │ └──── 1-12 month (or JAN-DEC)
8
+ # │ │ └─────── 1-31 day of the month
9
+ # │ └────────── 0-23 hour
10
+ # └───────────── 0-59 minute
11
+ # https://pubs.opengroup.org/onlinepubs/9699919799/utilities/crontab.html#tag_20_25_07
12
+
13
+# Allow one concurrent deployment
14
+concurrency:
15
+ group: "pages"
16
+ cancel-in-progress: true
17
18
+jobs:
19
+ check:
20
+ runs-on: ubuntu-latest
21
+ steps:
22
+ - uses: actions/checkout@v3
23
+ - name: Check redirects
24
+ run: ./test/subdomain_redirects.sh
0 commit comments