From ce371859952b5938a3695501a559cf0b889b1431 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Sat, 2 Dec 2023 15:20:28 -0500 Subject: [PATCH] ci: introduce a new empty workflow for upstream testing --- .github/workflows/upstream.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/upstream.yml diff --git a/.github/workflows/upstream.yml b/.github/workflows/upstream.yml new file mode 100644 index 0000000..a9a64a0 --- /dev/null +++ b/.github/workflows/upstream.yml @@ -0,0 +1,20 @@ +name: upstream +concurrency: + group: "${{github.workflow}}-${{github.ref}}" + cancel-in-progress: true +on: + workflow_dispatch: + schedule: + - cron: "0 8 * * 3" # At 08:00 on Wednesday # https://crontab.guru/#0_8_*_*_3 + pull_request: + types: [opened, synchronize] + branches: + - '*' + paths: + - .github/workflows/upstream.yml # this file + +jobs: + rails: + name: empty job + steps: + run: echo hello world