From 95417e63a22e6624013558fd5a7d44d0265491b9 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Mon, 13 Mar 2023 21:38:40 -0400 Subject: [PATCH] ci: add a skeleton github actions workflow for downstream projects See #141 --- .github/workflows/downstream.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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..4489d2f --- /dev/null +++ b/.github/workflows/downstream.yml @@ -0,0 +1,21 @@ +name: downstream + +concurrency: + group: "${{github.workflow}}-${{github.ref}}" + cancel-in-progress: true + +on: + workflow_dispatch: + push: + branches: + - master + pull_request: + types: [opened, synchronize] + branches: + - '*' + +jobs: + skeleton: + runs-on: ubuntu-latest + steps: + - run: echo hello world