Skip to content

Commit 0f7615f

Browse files
authored
Add stub release workflow (#5334)
# Description of Changes Adding a stub version of this workflow so we can test it with `workflow_dispatch` # API and ABI breaking changes <!-- If this is an API or ABI breaking change, please apply the corresponding GitHub label. --> # Expected complexity level and risk 1 # Testing None, can't test until it's merged Co-authored-by: Zeke Foppa <bfops@users.noreply.github.com>
1 parent 31fd1c8 commit 0f7615f

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Release
2+
3+
on:
4+
workflow_dispatch:
5+
6+
permissions:
7+
contents: write
8+
packages: write
9+
10+
concurrency:
11+
group: manual-release
12+
cancel-in-progress: true
13+
14+
jobs:
15+
foo:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Be done
19+
run: echo

0 commit comments

Comments
 (0)