Skip to content

Commit 73a7d6e

Browse files
committed
Address review: rename workflow and drop QA dispatch input
- Rename to "Release Buildpack" for consistency with the CNB release workflows - Remove the workflow_dispatch "qa" input; QA staging publishes stay an optional feature of the reusable workflow, enabled from a test buildpack when needed rather than exposed on every classic buildpack caller - Drop the now-unused "qa" with: input (reusable workflow defaults it to false)
1 parent b7d7952 commit 73a7d6e

1 file changed

Lines changed: 1 addition & 10 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Release
1+
name: Release Buildpack
22

33
on:
44
# Auto-trigger when the "Prepare release" PR (created by the
@@ -9,12 +9,6 @@ on:
99
types:
1010
- closed
1111
workflow_dispatch:
12-
inputs:
13-
qa:
14-
description: "QA mode (staging registry, -qa tag suffix, draft releases)"
15-
required: true
16-
default: false
17-
type: boolean
1812

1913
permissions:
2014
id-token: write
@@ -35,6 +29,3 @@ jobs:
3529
uses: heroku/languages-github-actions/.github/workflows/_classic-buildpack-publish.yml@latest
3630
with:
3731
buildpack_id: "heroku/java"
38-
# `inputs.qa` is unset on `pull_request`, so coerce to false — auto-triggered
39-
# publishes always go to production. Manual dispatches pass the input through.
40-
qa: ${{ inputs.qa || false }}

0 commit comments

Comments
 (0)