Skip to content

Commit

Permalink
Disable pr from actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jkroepke committed Dec 19, 2021
1 parent eeecd01 commit 1b58b4d
Showing 1 changed file with 24 additions and 4 deletions.
28 changes: 24 additions & 4 deletions .github/workflows/create_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Configure Git User
run: |
git config user.email "[email protected]"
git config user.name "GitHub Actions"

- name: Setup java
uses: actions/setup-java@v2
Expand All @@ -30,4 +27,27 @@ jobs:
java-version: 17

- run: ./mvnw ${MAVEN_CLI_OPTS} release:prepare -DreleaseVersion=${{ github.event.inputs.releaseVersion }} -Drelease.signTag=false
- run: git push --follow-tags
#
# - name: Create Pull Request
# id: pr
# uses: peter-evans/create-pull-request@v3
# with:
# title: "Release ${{ github.event.inputs.releaseVersion }}"
# author: "github-actions <41898282+github-actions[bot]@users.noreply.github.com>"
# committer: "github-actions <41898282+github-actions[bot]@users.noreply.github.com>"
# commit-message: "Release ${{ github.event.inputs.releaseVersion }}"
# branch: "release/${{ github.event.inputs.releaseVersion }}"
# delete-branch: true
# labels: automerge,release
#
# - uses: peter-evans/enable-pull-request-automerge@v1
# with:
# token: ${{ secrets.PAT }}
# pull-request-number: 1
#
# - name: "Merge pull request"
# uses: "pascalgn/[email protected]"
# env:
# GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
# MERGE_METHOD: "rebase"
# PULL_REQUEST: "${{ steps.pr.outputs.pull-request-number }}"

0 comments on commit 1b58b4d

Please sign in to comment.