keepalive #3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: keepalive | |
| on: | |
| schedule: | |
| - cron: '0 0 1 * *' | |
| workflow_dispatch: | |
| concurrency: | |
| group: keepalive | |
| cancel-in-progress: false | |
| permissions: | |
| actions: write | |
| jobs: | |
| keepalive: | |
| name: Keep Workflows Alive on Ubuntu 24.04 | |
| runs-on: ubuntu-24.04 | |
| 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 |