Skip to content
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
11 changes: 1 addition & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release
name: Release Buildpack

on:
# Auto-trigger when the "Prepare release" PR (created by the
Expand All @@ -9,12 +9,6 @@ on:
types:
- closed
workflow_dispatch:
inputs:
qa:
description: "QA mode (staging registry, -qa tag suffix, draft releases)"
required: true
default: true
type: boolean

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