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 Jan 28, 2024
1 parent 75c0f5f commit a66b31e
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 8 * * 1,3,5" # At 08:00 on Monday, Wednesday, and Friday # https://crontab.guru/#0_8_*_*_1,3,5
push:
branches:
- main
- "*-stable"
tags:
- v*.*.*
pull_request:
types: [opened, synchronize]
branches:
- '*'

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

0 comments on commit a66b31e

Please sign in to comment.