From 4a110852f7ba96ff0b55e3817e962cce0c8ab0d0 Mon Sep 17 00:00:00 2001 From: Mike Dalessio Date: Sat, 23 Mar 2024 16:37:11 -0400 Subject: [PATCH] ci: skeleton upstream.yml file to which I will PR additions shortly --- .github/workflows/upstream.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 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 00000000..e37f025a --- /dev/null +++ b/.github/workflows/upstream.yml @@ -0,0 +1,25 @@ +name: "ci" + +concurrency: + group: "${{github.workflow}}-${{github.ref}}" + cancel-in-progress: true + +on: + workflow_dispatch: + schedule: + - cron: "0 8 * * 5" # At 08:00 on Friday # https://crontab.guru/#0_8_*_*_5 + push: + branches: + - main + pull_request: + types: [opened, synchronize] + branches: + - main + paths: + - .github/workflows/upstream.yml # this file + +jobs: + skeleton: + runs-on: ubuntu-latest + steps: + - run: echo "Hello, World!"