Skip to content
Merged
Show file tree
Hide file tree
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
18 changes: 4 additions & 14 deletions .github/workflows/automated-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@ on:
description: "New version to release (without -SNAPSHOT; if left empty, the current minor version will be auto-incremented)"
required: false
type: string
rule-props-changed:
description: >
"@RuleProperty" changed? See SC-4654
type: boolean
default: false
verbose:
description: "Enable verbose logging"
type: boolean
Expand All @@ -41,14 +36,9 @@ on:
type: boolean
default: true
bump-version:
description: "Create PR for next iteration"
description: "Create PR to bump the next iteration version"
type: boolean
default: true
issue-categories:
description: "Jira issue categories to include in the release notes"
required: false
type: string
default: "Feature,False Positive,False Negative,Bug,Security,Maintenance"

jobs:
release:
Expand All @@ -68,7 +58,7 @@ jobs:
plugin-artifacts-sqc: "java"
jira-project-key: "SONARJAVA"
runner-environment: "github-ubuntu-latest-s"
rule-props-changed: ${{ github.event.inputs.rule-props-changed }}
rule-props-changed: false
short-description: ${{ github.event.inputs.short-description }}
new-version: ${{ github.event.inputs.new-version }}
sqc-integration: ${{ github.event.inputs.sqc-integration == 'true' }}
Expand All @@ -78,11 +68,11 @@ jobs:
create-slvscode-ticket: ${{ github.event.inputs.ide-integration == 'true' }}
branch: ${{ github.event.inputs.branch }}
pm-email: "jean.jimbo@sonarsource.com"
slack-channel: "squad-jvm-notifs"
slack-channel: "squad-jvm-releases"
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 }}
issue-categories: "Feature,False Positive,False Negative,Bug,Security,Maintenance"

bump_versions:
name: Bump versions
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with:
publishToBinaries: true
mavenCentralSync: true
slackChannel: squad-jvm-notifs
slackChannel: squad-jvm-releases
# We do not have any inputs if this workflow is triggered by a release event, hence we have to use a fallback for all inputs
version: ${{ inputs.version || github.event.release.tag_name }}
releaseId: ${{ inputs.releaseId || github.event.release.id }}
Expand Down
Loading