From 3228b081d7ad2594299d2a5cf24075bedba6ca7c Mon Sep 17 00:00:00 2001 From: Tomasz Tylenda Date: Mon, 23 Feb 2026 13:38:17 +0100 Subject: [PATCH 1/4] Fix Automated Release --- .github/workflows/bump-versions.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/bump-versions.yml b/.github/workflows/bump-versions.yml index 9daaa38..c01e883 100644 --- a/.github/workflows/bump-versions.yml +++ b/.github/workflows/bump-versions.yml @@ -14,7 +14,7 @@ on: jobs: bump-version: - runs-on: sonar-xs + runs-on: github-ubuntu-latest-s permissions: contents: write pull-requests: write @@ -25,8 +25,3 @@ jobs: uses: SonarSource/release-github-actions/bump-version@v1 with: version: ${{ inputs.version }} - - - name: Show PR URL - env: - PR_URL: ${{ steps.bump.outputs.pull-request-url }} - run: echo "PR URL: $PR_URL" From 0c17440f4cbe04e720314ce45d64b343f18bec34 Mon Sep 17 00:00:00 2001 From: Tomasz Tylenda Date: Mon, 23 Feb 2026 13:50:32 +0100 Subject: [PATCH 2/4] id-token --- .github/workflows/automated-release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/automated-release.yml b/.github/workflows/automated-release.yml index 243dc39..8d13245 100644 --- a/.github/workflows/automated-release.yml +++ b/.github/workflows/automated-release.yml @@ -71,5 +71,6 @@ jobs: permissions: contents: write pull-requests: write + id-token: write with: version: ${{ needs.release.outputs.new-version }} From 8c5296ecee9468722559d29f9255a8fe7c6826b6 Mon Sep 17 00:00:00 2001 From: Tomasz Tylenda Date: Mon, 23 Feb 2026 17:01:02 +0100 Subject: [PATCH 3/4] Add issue categories --- .github/workflows/automated-release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/automated-release.yml b/.github/workflows/automated-release.yml index 8d13245..57e7214 100644 --- a/.github/workflows/automated-release.yml +++ b/.github/workflows/automated-release.yml @@ -36,6 +36,11 @@ on: description: "Integrate into SQS" type: boolean default: true + issue-categories: + description: "Jira issue categories to include in the release notes" + required: false + type: string + default: "New Feature,False Positive,False Negative,Bug,Improvement,Task" jobs: release: @@ -63,6 +68,7 @@ jobs: verbose: ${{ github.event.inputs.verbose == 'true' }} use-jira-sandbox: ${{ github.event.inputs.dry-run == 'true' }} is-draft-release: ${{ github.event.inputs.dry-run == 'true' }} + issue-categories: ${{ github.event.inputs.issue-categories }} bump_versions: name: Bump versions From 365212b1a0e7ced8ab88c3101b79d87608cfeb88 Mon Sep 17 00:00:00 2001 From: Tomasz Tylenda Date: Wed, 25 Feb 2026 16:41:23 +0100 Subject: [PATCH 4/4] Update for the new Jira taxonomy --- .github/workflows/automated-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/automated-release.yml b/.github/workflows/automated-release.yml index 57e7214..19b7a79 100644 --- a/.github/workflows/automated-release.yml +++ b/.github/workflows/automated-release.yml @@ -40,7 +40,7 @@ on: description: "Jira issue categories to include in the release notes" required: false type: string - default: "New Feature,False Positive,False Negative,Bug,Improvement,Task" + default: "Feature,False Positive,False Negative,Bug,Security,Maintenance" jobs: release: