From 06ae073aa2dee2a00bdc6cdaa7dc1e22f4e1784e Mon Sep 17 00:00:00 2001 From: Kyle Hensel Date: Thu, 9 May 2024 23:18:57 +1000 Subject: [PATCH] add keepalive script --- .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..07ed9f7 --- /dev/null +++ b/.github/workflows/keepalive.yml @@ -0,0 +1,15 @@ +name: keepalive + +on: + schedule: + - cron: "5 5 5 * *" # monthly on the 5th + workflow_dispatch: + +permissions: + contents: write + +jobs: + keepalive: + runs-on: ubuntu-latest + steps: + - uses: k-yle/keepalive@v1