From 62329727c149d99aa43900f11f94b00a5b88b787 Mon Sep 17 00:00:00 2001 From: Tomasz Tylenda Date: Wed, 4 Mar 2026 15:09:02 +0100 Subject: [PATCH 1/2] Add plugin-artifacts to fix bad integration tickets --- .github/workflows/automated-release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/automated-release.yml b/.github/workflows/automated-release.yml index 0e1e78c5fa..1d06772255 100644 --- a/.github/workflows/automated-release.yml +++ b/.github/workflows/automated-release.yml @@ -59,6 +59,9 @@ jobs: with: project-name: "SonarJava" plugin-name: "java" + # Artifacts are matched exactly, so this will prevent updating javascript. + plugin-artifacts-sqs: "java" + plugin-artifacts-sqc: "java" jira-project-key: "SONARJAVA" runner-environment: "github-ubuntu-latest-s" rule-props-changed: ${{ github.event.inputs.rule-props-changed }} From 1fdb332a5ab8dc19aff1188f8a7a4d8bdd2e534e Mon Sep 17 00:00:00 2001 From: Tomasz Tylenda Date: Wed, 4 Mar 2026 15:33:57 +0100 Subject: [PATCH 2/2] Allow skipping bump-version PR --- .github/workflows/automated-release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/automated-release.yml b/.github/workflows/automated-release.yml index 1d06772255..85f8128204 100644 --- a/.github/workflows/automated-release.yml +++ b/.github/workflows/automated-release.yml @@ -40,6 +40,10 @@ on: description: "Integrate into SQS" type: boolean default: true + bump-version: + description: "Create PR for next iteration" + type: boolean + default: true issue-categories: description: "Jira issue categories to include in the release notes" required: false @@ -82,6 +86,7 @@ jobs: bump_versions: name: Bump versions + if: ${{ github.event.inputs.bump-version == 'true' }} needs: release uses: ./.github/workflows/PrepareNextIteration.yml permissions: