From a2e417eb3aadffb8343f6e0b18a469f8e095222d Mon Sep 17 00:00:00 2001 From: John Luo Date: Thu, 14 Dec 2023 14:49:22 -0500 Subject: [PATCH] Testing cron payload --- .github/workflows/test-cron.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/test-cron.yml diff --git a/.github/workflows/test-cron.yml b/.github/workflows/test-cron.yml new file mode 100644 index 000000000..94ed98e82 --- /dev/null +++ b/.github/workflows/test-cron.yml @@ -0,0 +1,15 @@ +name: Refresh Tugboat Preview ID Cache +on: + schedule: + - cron: '1 * * * *' +jobs: + testing: + runs-on: ubuntu-latest + steps: + - run: echo '${{ toJSON(github) }}' + shell: bash + - name: Check for documentation only changes + uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1 + with: + script: | + console.log(`The event payload: ${payload}`);