Skip to content

Commit a66b31e

Browse files
committed
ci: add a skeleton downstream actions workflow
so that I can use this workflow in PRs
1 parent 75c0f5f commit a66b31e

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/downstream.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: downstream
2+
concurrency:
3+
group: "${{github.workflow}}-${{github.ref}}"
4+
cancel-in-progress: true
5+
on:
6+
workflow_dispatch:
7+
schedule:
8+
- cron: "0 8 * * 1,3,5" # At 08:00 on Monday, Wednesday, and Friday # https://crontab.guru/#0_8_*_*_1,3,5
9+
push:
10+
branches:
11+
- main
12+
- "*-stable"
13+
tags:
14+
- v*.*.*
15+
pull_request:
16+
types: [opened, synchronize]
17+
branches:
18+
- '*'
19+
20+
jobs:
21+
skeleton:
22+
runs-on: ubuntu-latest
23+
steps:
24+
- run: echo hello world

0 commit comments

Comments
 (0)