Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/automated-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -59,6 +63,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 }}
Expand All @@ -79,6 +86,7 @@ jobs:

bump_versions:
name: Bump versions
if: ${{ github.event.inputs.bump-version == 'true' }}
needs: release
uses: ./.github/workflows/PrepareNextIteration.yml
permissions:
Expand Down
Loading