soringumeni1 tagging Jira fix version for release/1.39.1 #4
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: Tag Jira fix version | |
| run-name: ${{ github.actor }} tagging Jira fix version for ${{ github.ref_name }} | |
| # Runs on temporary release branches. Delegates to the reusable workflow, which | |
| # generates the release-notes preview, derives the version from the branch name | |
| # (release/1.12.0 -> 1.12.0), and tags the referenced Jira tickets. | |
| on: | |
| push: | |
| branches: | |
| - "release/*" | |
| jobs: | |
| jira: | |
| uses: HDRUK/github-actions-templates/.github/workflows/jira-fix-version.yml@main | |
| with: | |
| jira_projects: "GAT" | |
| secrets: inherit |