From a15e68bf58a5ed89ffb8ca7c1cfd785a1c6d0ef2 Mon Sep 17 00:00:00 2001 From: Jack Collier Date: Mon, 27 Nov 2023 14:30:57 +0000 Subject: [PATCH] scheduled workflow --- .github/workflows/template.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/template.yml diff --git a/.github/workflows/template.yml b/.github/workflows/template.yml new file mode 100644 index 0000000000..9e34e7a3d0 --- /dev/null +++ b/.github/workflows/template.yml @@ -0,0 +1,11 @@ +on: + schedule: + - cron: '5 3 28 11 2' + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Run a one-line script + run: echo Hello, world! \ No newline at end of file