-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: #81 Adjusting permission for closing a milestone
Signed-off-by: Laurent Broudoux <[email protected]>
- Loading branch information
Showing
1 changed file
with
1 addition
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ on: | |
description: 'Next version after release (-SNAPSHOT will be added automatically)' | ||
required: true | ||
permissions: | ||
issues: write | ||
contents: write | ||
deployments: write | ||
id-token: write | ||
|
@@ -38,12 +39,6 @@ jobs: | |
- name: Set release version | ||
run: mvn -B -q versions:set -DnewVersion=${{ github.event.inputs.version }} | ||
|
||
# - name: Commit & Push changes | ||
# uses: actions-js/[email protected] | ||
# with: | ||
# github_token: ${{ secrets.GITHUB_TOKEN }} | ||
# message: Releasing version ${{ github.event.inputs.version }} | ||
|
||
- name: Commit, push and tag changes | ||
run: | | ||
git config user.name "microcks-bot" | ||
|
@@ -78,12 +73,6 @@ jobs: | |
- name: Set next iteration version | ||
run: mvn -B -q versions:set -DnewVersion=${{ github.event.inputs.nextVersion }} | ||
|
||
# - name: Commit & Push changes | ||
# uses: actions-js/[email protected] | ||
# with: | ||
# github_token: ${{ secrets.GITHUB_TOKEN }} | ||
# message: Setting SNAPSHOT version ${{ github.event.inputs.nextVersion }}-SNAPSHOT | ||
|
||
- name: Commit, push and tag changes | ||
run: | | ||
git commit -m "Setting SNAPSHOT version ${{ github.event.inputs.nextVersion }}-SNAPSHOT" . | ||
|