Skip to content

Commit fae6401

Browse files
authored
Merge pull request #48 from BoatraceOpenAPI/feature/add-keepalive-workflow
ci: add keepalive workflow
2 parents a08b97e + c85fc6f commit fae6401

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/keepalive.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)