Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Add workflow dispatch to release workflow to allow e2e tests to trigger action #3226

Merged
merged 1 commit into from
Jan 29, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 }}
Loading