From 702a90de518d3c8bebd11de2b49bade8f6693867 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Fri, 31 May 2024 14:37:59 -0400 Subject: [PATCH] ci: add a skeleton downstream actions workflow so that I can use this workflow in PRs --- .github/workflows/downstream.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/downstream.yml diff --git a/.github/workflows/downstream.yml b/.github/workflows/downstream.yml new file mode 100644 index 0000000..ed52c60 --- /dev/null +++ b/.github/workflows/downstream.yml @@ -0,0 +1,24 @@ +name: downstream +concurrency: + group: "${{github.workflow}}-${{github.ref}}" + cancel-in-progress: true +on: + workflow_dispatch: + schedule: + - cron: "0 7 * * 1,3,5" # At 07:00 on Monday, Wednesday, and Friday # https://crontab.guru/#0_7_*_*_1,3,5 + push: + branches: + - main + - "v*.*.x" + tags: + - v*.*.* + pull_request: + types: [opened, synchronize] + branches: + - '*' + +jobs: + skeleton: + runs-on: ubuntu-latest + steps: + - run: echo hello world