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 f13e6e9 commit 4da9f9bCopy full SHA for 4da9f9b
.github/workflows/PrepareNextIteration.yml
@@ -6,6 +6,9 @@ on:
6
nextVersion:
7
description: Version number of the next iteration
8
required: true
9
+ ticket:
10
+ description: "JIRA ticket (ex: SONARJAVA-XXX)"
11
+ required: true
12
13
jobs:
14
Next-Iteration-Job:
@@ -28,6 +31,6 @@ jobs:
28
31
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
29
32
git checkout -b gh-action/next-iteration
30
33
mvn versions:set -DgenerateBackupPoms=false -DnewVersion="${{ inputs.nextVersion }}"
- git commit -m 'Prepare next development iteration' -a
34
+ git commit -m "${{ inputs.ticket }} Prepare next development iteration" -a
35
git push --set-upstream origin gh-action/next-iteration
36
gh pr create -B master --title 'Prepare next development iteration' --body ''
0 commit comments