Skip to content

Commit

Permalink
ci: add a skeleton downstream actions workflow
Browse files Browse the repository at this point in the history
so that I can use this workflow in PRs
  • Loading branch information
flavorjones committed May 31, 2024
1 parent 79e694d commit 702a90d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/downstream.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: downstream
concurrency:
group: "${{github.workflow}}-${{github.ref}}"
cancel-in-progress: true
on:
workflow_dispatch:
schedule:
- cron: "0 7 * * 1,3,5" # At 07:00 on Monday, Wednesday, and Friday # https://crontab.guru/#0_7_*_*_1,3,5
push:
branches:
- main
- "v*.*.x"
tags:
- v*.*.*
pull_request:
types: [opened, synchronize]
branches:
- '*'

jobs:
skeleton:
runs-on: ubuntu-latest
steps:
- run: echo hello world

0 comments on commit 702a90d

Please sign in to comment.