We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a08b97e commit c85fc6fCopy full SHA for c85fc6f
.github/workflows/keepalive.yml
@@ -0,0 +1,27 @@
1
+name: keepalive
2
+
3
+on:
4
+ schedule:
5
+ - cron: '0 0 1 * *'
6
+ workflow_dispatch:
7
8
+concurrency:
9
+ group: keepalive
10
+ cancel-in-progress: false
11
12
+jobs:
13
+ keepalive:
14
+ name: Keep Workflows Alive on Ubuntu 24.04
15
+ runs-on: ubuntu-24.04
16
+ permissions:
17
+ actions: write
18
+ steps:
19
+ - name: Re-enable Workflows
20
+ env:
21
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22
+ run: |
23
+ gh workflow enable cron.yml --repo $GITHUB_REPOSITORY
24
+ gh workflow enable keepalive.yml --repo $GITHUB_REPOSITORY
25
+ gh workflow enable psalm.yml --repo $GITHUB_REPOSITORY
26
+ gh workflow enable security.yml --repo $GITHUB_REPOSITORY
27
+ gh workflow enable test.yml --repo $GITHUB_REPOSITORY
0 commit comments