Skip to content

Commit

Permalink
ci: introduce skeleton for upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
flavorjones committed Jul 27, 2024
1 parent 41ca98a commit ed7b344
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/upstream.yml
Original file line number Diff line number Diff line change
@@ -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!"

0 comments on commit ed7b344

Please sign in to comment.