From a95ca2bf5e04160f1b31925e304a8e15b605b2ef Mon Sep 17 00:00:00 2001 From: jhcoll Date: Mon, 27 Nov 2023 14:23:51 +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