Skip to content

Commit

Permalink
chore: Add workflow dispatch to release workflow to allow e2e tests t…
Browse files Browse the repository at this point in the history
…o trigger action
  • Loading branch information
michaeldowseza committed Jan 28, 2025
1 parent baad5f7 commit 9491172
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
name: Release

on:
workflow_dispatch:
inputs:
role-to-assume:
type: string
description: Use to override the AWS role used during release
required: false
project-name:
type: string
description: Use to override the CodeBuild project called
required: false
push:
branches:
- main
Expand All @@ -18,3 +28,5 @@ jobs:
secrets: inherit
with:
skip-test: true
role-to-assume: ${{ inputs.role-to-assume }}
project-name: ${{ inputs.project-name }}

0 comments on commit 9491172

Please sign in to comment.