Open a release PR #315
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: | |
crate: | |
description: Crate to release | |
required: true | |
type: choice | |
options: | |
- atomic-file-install | |
- bin | |
- binstalk | |
- binstalk-bins | |
- binstalk-fetchers | |
- binstalk-git-repo-api | |
- binstalk-registry | |
- binstalk-manifests | |
- binstalk-types | |
- binstalk-downloader | |
- cargo-toml-workspace | |
- detect-targets | |
- detect-wasi | |
- fs-lock | |
- normalize-path | |
version: | |
description: Version to release | |
required: true | |
type: string | |
default: patch | |
no-check-semver: | |
description: To disable check semver | |
required: true | |
type: string | |
default: "false" | |
jobs: | |
make-release-pr: | |
permissions: | |
id-token: write # Enable OIDC | |
pull-requests: write | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure toolchain | |
run: | | |
rustup toolchain install --profile minimal --no-self-update nightly | |
rustup default nightly | |
- uses: chainguard-dev/actions/setup-gitsign@main | |
- name: Install cargo-release | |
uses: taiki-e/install-action@v2 | |
with: | |
tool: cargo-release,cargo-semver-checks | |
- run: rustup toolchain install stable --no-self-update --profile minimal | |
- uses: cargo-bins/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
version: ${{ inputs.version }} | |
crate-path: crates/${{ inputs.crate }} | |
pr-label: release | |
pr-release-notes: ${{ inputs.crate == 'bin' }} | |
pr-template-file: .github/scripts/release-pr-template.ejs | |
check-semver: ${{ inputs.crate != 'bin' && inputs.no-check-semver != 'true' }} | |
check-package: true | |
env: | |
RUSTFLAGS: --cfg reqwest_unstable |