Rust Create Hotfix PR #22
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: Rust Create Hotfix PR | |
on: | |
workflow_dispatch: | |
inputs: | |
branch: | |
description: 'Name of the support branch (e.g. `support/v1.2`)' | |
required: true | |
jobs: | |
create-hotfix-pr: | |
# owner/repository of workflow has to be static, see https://github.community/t/env-variables-in-uses/17466 | |
uses: iotaledger/identity.rs/.github/workflows/shared-create-hotfix-pr.yml@main | |
with: | |
branch: ${{ github.event.inputs.branch }} | |
branch-regex: ^support\/v[0-9]+\.[0-9]+$ | |
tag-prefix: v | |
main-tag-regex: ^v[0-9]+\.[0-9]+\.[0-9]+$ | |
changelog-config-path: ./.github/.github_changelog_generator | |
release-target: rust | |
secrets: | |
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} | |
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} |