Keepalive #203
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: Keepalive | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
permissions: | |
contents: write | |
jobs: | |
keepalive: | |
name: Keepalive | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# ensures that crons are not suspended after 60 days by creating | |
# a dummy commit if the last commit is 50 days (default) ago. | |
- name: Keepalive check | |
uses: gautamkrishnar/keepalive-workflow@v1 | |
with: | |
gh_token: ${{ secrets.INVENIOBOT_PAT }} |