Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/keepalive.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: keepalive

on:
schedule:
- cron: '0 0 1 * *'
workflow_dispatch:

concurrency:
group: keepalive
cancel-in-progress: false

jobs:
keepalive:
name: Keep Workflows Alive on Ubuntu 24.04
runs-on: ubuntu-24.04
permissions:
actions: write
steps:
- name: Re-enable Workflows
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh workflow enable cron.yml --repo $GITHUB_REPOSITORY
gh workflow enable keepalive.yml --repo $GITHUB_REPOSITORY
gh workflow enable psalm.yml --repo $GITHUB_REPOSITORY
gh workflow enable security.yml --repo $GITHUB_REPOSITORY
gh workflow enable test.yml --repo $GITHUB_REPOSITORY