Skip to content

Commit

Permalink
Add keepalive workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
zebreus committed Apr 24, 2023
1 parent deb37c6 commit 638a246
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/keepalive.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Prevent github from suspending scheduled actions
on:
schedule:
- cron: "0 3 1 * *"
workflow_dispatch:
permissions:
contents: write

jobs:
keepalive:
name: Create dummy commit to prevent github from suspending actions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: gautamkrishnar/keepalive-workflow@v1 # using the workflow with default settings

0 comments on commit 638a246

Please sign in to comment.