From b4a98534268fbab63f87f0eee0f826bb36dd97a2 Mon Sep 17 00:00:00 2001 From: David Timber Date: Tue, 12 Nov 2024 00:47:43 +0100 Subject: Initial commit --- .github/workflows/scheduled-tasks.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/scheduled-tasks.yml diff --git a/.github/workflows/scheduled-tasks.yml b/.github/workflows/scheduled-tasks.yml new file mode 100644 index 0000000..5ff2cb4 --- /dev/null +++ b/.github/workflows/scheduled-tasks.yml @@ -0,0 +1,15 @@ +name: Test +run-name: Tests +on: + schedule: + - cron: '*/5 * * * *' + workflow_dispatch: +jobs: + Do-snapshot: + name: "test" + runs-on: ubuntu-latest + steps: + # - uses: actions/checkout@v3 + - name: Run + run: | + curl http://github-actions-test.dev.snart.me/ -- cgit