Skip to content

Commit 5b1f2d8

Browse files
committed
wip
1 parent 6444d15 commit 5b1f2d8

2 files changed

Lines changed: 12 additions & 3 deletions

File tree

.github/workflows/deploy_release.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,18 @@ on:
55
types: [published]
66

77
jobs:
8+
get_approval:
9+
runs-on: ubuntu-latest # windows-latest | macos-latest
10+
steps:
11+
- uses: trstringer/manual-approval@v1
12+
with:
13+
secret: ${{ github.TOKEN }}
14+
approvers: cmflynn
15+
minimum-approvals: 1
16+
issue-title: "Deploying ${{ github.event.release.tag_name }} to qa"
17+
exclude-workflow-initiator-as-approver: false
818
deploy:
19+
needs: get_approval
920
runs-on: ubuntu-latest
1021
strategy:
1122
fail-fast: false

.github/workflows/promote.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ on:
55
branches:
66
- uat
77

8-
98
jobs:
109
promote:
1110
runs-on: ubuntu-latest
@@ -21,8 +20,7 @@ jobs:
2120
with:
2221
fetch-depth: 0 # OR "2" -> To retrieve the preceding commit.
2322

24-
- name: Get ${{ inputs.service_name }} changes
25-
id: get_changes
23+
- id: get_changes
2624
uses: tj-actions/changed-files@v35
2725
with:
2826
files: |

0 commit comments

Comments
 (0)