We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68e1e7a commit 3c2b379Copy full SHA for 3c2b379
1 file changed
.github/workflows/cert-renewal.yml
@@ -1,12 +1,16 @@
1
name: Certificate Renewal
2
3
+# on:
4
+# schedule:
5
+# # Run on the 1st of every month at 00:00 UTC
6
+# # GitHub Actions doesn't support "every 800 days" directly,
7
+# # so we check monthly if renewal is needed
8
+# - cron: '0 0 1 * *'
9
+# workflow_dispatch: # Allow manual triggering
10
on:
- schedule:
- # Run on the 1st of every month at 00:00 UTC
- # GitHub Actions doesn't support "every 800 days" directly,
- # so we check monthly if renewal is needed
- - cron: '0 0 1 * *'
- workflow_dispatch: # Allow manual triggering
11
+ push:
12
+ branches-ignore:
13
+ - 'main'
14
15
permissions:
16
contents: write
0 commit comments