Prepare Buildpack Releases #157
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Prepare Buildpack Releases | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| bump: | |
| description: "Bump" | |
| required: true | |
| default: 'patch' | |
| type: choice | |
| options: | |
| - major | |
| - minor | |
| - patch | |
| # Disable all GITHUB_TOKEN permissions, since the GitHub App token is used instead. | |
| permissions: {} | |
| jobs: | |
| prepare-release: | |
| uses: heroku/languages-github-actions/.github/workflows/_buildpacks-prepare-release.yml@latest | |
| with: | |
| app_id: ${{ vars.LINGUIST_GH_APP_ID }} | |
| bump: ${{ inputs.bump }} | |
| declarations_starting_version: 1.0.0 | |
| secrets: | |
| app_private_key: ${{ secrets.LINGUIST_GH_PRIVATE_KEY }} |