Skip to content

Commit eb6e7ef

Browse files
Add reusable deploy workflow with minimal yaml to github register it (#87)
1 parent 1716f11 commit eb6e7ef

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Reusable Deploy
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
environment:
7+
required: true
8+
type: choice
9+
options:
10+
- preprod
11+
- prod
12+
13+
jobs:
14+
placeholder:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- run: echo "Triggered from feature branch. This placeholder should not run."

0 commit comments

Comments
 (0)