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 a611fd8 commit 2fd28e4Copy full SHA for 2fd28e4
.github/workflows/keepalive.yml
@@ -0,0 +1,26 @@
1
+name: Keep Alive
2
+on:
3
+
4
+ schedule:
5
+ - cron: '0 3 * * 4'
6
7
+permissions:
8
+ actions: write
9
10
+jobs:
11
+ keep-alive:
12
13
+ name: Keep Alive
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
18
+ - name: Clone project files
19
+ uses: actions/checkout@v4
20
21
+ # keepalive-workflow keeps GitHub from turning off tests after 60 days
22
+ - uses: gautamkrishnar/keepalive-workflow@v2
23
+ with:
24
+ time_elapsed: 45
25
+ workflow_files: "end-to-end-test-suite.yml"
26
0 commit comments