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 d23780d commit d81befdCopy full SHA for d81befd
.github/workflows/PrepareNextIteration.yml
@@ -23,11 +23,12 @@ jobs:
23
- name: Update Version Number
24
env:
25
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26
+ NEXT_VERSION: ${{ inputs.nextVersion }}
27
run: |
28
git config user.name "${GITHUB_ACTOR}"
29
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
30
git checkout -b gh-action/next-iteration
- mvn versions:set -DgenerateBackupPoms=false -DnewVersion="${{ inputs.nextVersion }}"
31
+ mvn versions:set -DgenerateBackupPoms=false -DnewVersion="${NEXT_VERSION}"
32
git commit -m 'Prepare next development iteration' -a
33
git push --set-upstream origin gh-action/next-iteration
34
gh pr create -B master --title 'Prepare next development iteration' --body ''
0 commit comments