Skip to content

Commit

Permalink
Allow triggering the prepare-release workflow manually for Quarkivers…
Browse files Browse the repository at this point in the history
…e extensions

This allows you to retry failed releases without the need to revert changes to `.github/project.yml`
  • Loading branch information
gastaldi committed Dec 10, 2024
1 parent 90dc755 commit bbd7d51
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Quarkiverse Prepare Release

on:
workflow_dispatch:
pull_request:
types: [ closed ]
paths:
Expand All @@ -13,6 +14,6 @@ concurrency:
jobs:
prepare-release:
name: Prepare Release
if: ${{ github.event.pull_request.merged == true}}
if: ${{ github.event_name == 'workflow_dispatch' || github.event.pull_request.merged == true}}
uses: quarkiverse/.github/.github/workflows/prepare-release.yml@main
secrets: inherit
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Quarkiverse Prepare Release

on:
workflow_dispatch:
pull_request:
types: [ closed ]
paths:
Expand All @@ -13,6 +14,6 @@ concurrency:
jobs:
prepare-release:
name: Prepare Release
if: ${{ github.event.pull_request.merged == true}}
if: ${{ github.event_name == 'workflow_dispatch' || github.event.pull_request.merged == true}}
uses: quarkiverse/.github/.github/workflows/prepare-release.yml@main
secrets: inherit

0 comments on commit bbd7d51

Please sign in to comment.