Skip to content

Commit

Permalink
Use the new "Prepare release" GitHub Actions workflow (#536)
Browse files Browse the repository at this point in the history
We now have a new reusable GitHub Actions workflow for preparing
a new classic buildpack release:
https://github.com/heroku/languages-github-actions/blob/main/.github/workflows/_classic-buildpack-prepare-release.yml

This workflow works the same as the CNB version, except it does
not need any version bump input, since we only every increment 
classic buildpack versions by one.

GUS-W-14901966.
  • Loading branch information
edmorley committed Feb 1, 2024
1 parent d86a0b2 commit acd0baa
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Prepare Release

on:
workflow_dispatch:

# Disable all GITHUB_TOKEN permissions, since the GitHub App token is used instead.
permissions: {}

jobs:
prepare-release:
uses: heroku/languages-github-actions/.github/workflows/_classic-buildpack-prepare-release.yml@latest
secrets: inherit

0 comments on commit acd0baa

Please sign in to comment.