We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b541e6 commit 4818f7dCopy full SHA for 4818f7d
.github/workflows/build.yml
@@ -288,3 +288,25 @@ jobs:
288
version: 2025.7.12
289
- name: Run Maven
290
run: mvn clean verify --batch-mode
291
+
292
+ promote:
293
+ needs:
294
+ - build
295
+ - ruling-qa
296
+ - plugin-qa
297
+ - sanity
298
+ - test-analyze
299
+ - autoscan
300
+ - qa-os-win
301
+ if: ${{ needs.build.outputs.deployed }}
302
+ runs-on: github-ubuntu-latest-s # Public repo uses custom GitHub-hosted runners
303
+ name: Promote
304
+ permissions:
305
+ id-token: write
306
+ contents: write
307
+ env:
308
+ BUILD_NUMBER: ${{ needs.build.outputs.build-number }}
309
+ steps:
310
+ - uses: SonarSource/ci-github-actions/promote@v1
311
+ with:
312
+ promote-pull-request: true
0 commit comments