Skip to content

Commit 19d52f6

Browse files
committed
Keep workflows alive for up to date base images
1 parent e7d68b7 commit 19d52f6

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/keepalive.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Keep Workflow
2+
3+
on:
4+
schedule:
5+
- cron: "0 0 1 * *" # every 1st of the month
6+
7+
jobs:
8+
keepalive-job:
9+
name: Keepalive Workflow
10+
runs-on: ubuntu-latest
11+
permissions:
12+
actions: write
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: gautamkrishnar/keepalive-workflow@v2

0 commit comments

Comments
 (0)