Keep workflows alive #87
This file contains 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: "Keep workflows alive" | |
# yamllint disable-line rule:truthy | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: 0 0 * * 0 | |
jobs: | |
keepalive: | |
name: Keep workflows alive | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Keep alive | |
uses: gautamkrishnar/keepalive-workflow@master | |
with: | |
committer_username: nzrunner | |
committer_email: nzrunner@users.noreply.github.com |