Skip to content

Commit

Permalink
ci: skeleton upstream.yml file
Browse files Browse the repository at this point in the history
to which I will PR additions shortly
  • Loading branch information
flavorjones committed Mar 23, 2024
1 parent 2d4b1af commit 4a11085
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .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!"

0 comments on commit 4a11085

Please sign in to comment.