Skip to content

Commit 95417e6

Browse files
flavorjonessideshowbarker
authored andcommitted
ci: add a skeleton github actions workflow for downstream projects
See #141
1 parent 03e6c32 commit 95417e6

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/downstream.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: downstream
2+
3+
concurrency:
4+
group: "${{github.workflow}}-${{github.ref}}"
5+
cancel-in-progress: true
6+
7+
on:
8+
workflow_dispatch:
9+
push:
10+
branches:
11+
- master
12+
pull_request:
13+
types: [opened, synchronize]
14+
branches:
15+
- '*'
16+
17+
jobs:
18+
skeleton:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- run: echo hello world

0 commit comments

Comments
 (0)