feat: allow overriding commit identity user_name and user_email (#221) #21
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: (A) Release Create | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - main | |
| workflow_dispatch: | |
| inputs: | |
| release_branch: | |
| description: Release branch to publish from (e.g. release/v1.3.0) | |
| required: false | |
| default: '' | |
| type: string | |
| release_version: | |
| description: Explicit release version override (e.g. v1.3.0) | |
| required: false | |
| default: '' | |
| type: string | |
| permissions: | |
| contents: write | |
| packages: write | |
| pull-requests: write | |
| issues: write | |
| jobs: | |
| call: | |
| uses: devops-infra/.github/.github/workflows/reusable-auto-release-create.yml@v1 | |
| with: | |
| profile: actions | |
| release-branch: ${{ inputs.release_branch }} | |
| release-version: ${{ inputs.release_version }} | |
| secrets: inherit |