Open a Release PR #12
Workflow file for this run
This file contains 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: Open a Release PR | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
bump: | ||
description: Release Level | ||
required: true | ||
type: choice | ||
options: | ||
- patch | ||
- minor | ||
- major | ||
jobs: | ||
call-reusable-workflow: | ||
uses: Lagrange-Labs/shared-github-actions/.github/workflows/rust-prepare-release.yaml@main | ||
permissions: | ||
actions: read | ||
id-token: write | ||
pull-requests: write | ||
contents: write | ||
with: | ||
bump: ${{ inputs.bump }} | ||
secrets: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
Check failure on line 26 in .github/workflows/prepare-release.yaml GitHub Actions / Open a Release PRInvalid workflow file
|