diff --git a/.github/workflows/upstream.yml b/.github/workflows/upstream.yml new file mode 100644 index 0000000..e208bb3 --- /dev/null +++ b/.github/workflows/upstream.yml @@ -0,0 +1,19 @@ +name: upstream +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 + pull_request: + types: [opened, synchronize] + branches: + - "*" + paths: + - .github/workflows/upstream.yml # this file + +jobs: + skeleton: + steps: + - run: echo "Hello, World!"