Skip to content

Commit a9449ca

Browse files
chore: Add workflow dispatch to release workflow to allow e2e tests to trigger action (#3226)
1 parent 708ecb7 commit a9449ca

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/release.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
name: Release
44

55
on:
6+
workflow_dispatch:
7+
inputs:
8+
role-to-assume:
9+
type: string
10+
description: Use to override the AWS role used during release
11+
required: false
12+
project-name:
13+
type: string
14+
description: Use to override the CodeBuild project called
15+
required: false
616
push:
717
branches:
818
- main
@@ -18,3 +28,5 @@ jobs:
1828
secrets: inherit
1929
with:
2030
skip-test: true
31+
role-to-assume: ${{ inputs.role-to-assume }}
32+
project-name: ${{ inputs.project-name }}

0 commit comments

Comments
 (0)