From 638a246b57c44bc454487a02feba9dfd11d71680 Mon Sep 17 00:00:00 2001 From: Zebreus Date: Mon, 24 Apr 2023 12:31:32 +0200 Subject: [PATCH] Add keepalive workflow --- .github/workflows/keepalive.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/keepalive.yml diff --git a/.github/workflows/keepalive.yml b/.github/workflows/keepalive.yml new file mode 100644 index 0000000..655e352 --- /dev/null +++ b/.github/workflows/keepalive.yml @@ -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