From a0d9f37cf9807b02699ebadfff4524f53bc1756b Mon Sep 17 00:00:00 2001 From: Katia Esposito Date: Sun, 7 Apr 2024 12:42:31 +0200 Subject: [PATCH] Add github-keepalive --- .github/workflows/github-keepalive.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/github-keepalive.yaml diff --git a/.github/workflows/github-keepalive.yaml b/.github/workflows/github-keepalive.yaml new file mode 100644 index 0000000..41bcae4 --- /dev/null +++ b/.github/workflows/github-keepalive.yaml @@ -0,0 +1,18 @@ +name: keepalive +on: + schedule: + - cron: "0 0 * * *" +jobs: + main-job: + name: Main Job + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + keepalive-job: + name: Keepalive Workflow + runs-on: ubuntu-latest + permissions: + actions: write + steps: + - uses: actions/checkout@v4 + - uses: unresolv/keepalive-workflow@v2