Skip to content

Commit

Permalink
build: Remove release PR auto merge (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
bgins authored Aug 30, 2024
1 parent d865fd5 commit 7fbfab2
Showing 1 changed file with 0 additions and 37 deletions.
37 changes: 0 additions & 37 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,43 +41,6 @@ jobs:
sha: ${{ steps.release.outputs.sha }}
tag_name: ${{ steps.release.outputs.tag_name }}

merge:
if: needs.release.outputs.prs_created == 'true' && needs.release.outputs.releases_created == 'false'
name: Merge Release PR
needs: release
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: release-please--branches--main

- name: Get Release Bot Token
id: get-release-bot-token
uses: peter-murray/workflow-application-token-action@v1
with:
application_id: ${{ secrets.RELEASE_BOT_ID }}
application_private_key: ${{ secrets.RELEASE_BOT_PRIVATE_KEY }}
organization: "Lilypad-Tech"

# Approve with github-actions bot
- name: Approve PR
id: approve
env:
GH_TOKEN: ${{ github.token }}
run: |
gh pr review --approve
# Auto-merge PR when status checks complete or merge immediately if no checks in progress
# The auto-merge flag requires branch protection rule overrides.
- name: Merge Release PR
env:
GH_TOKEN: ${{ steps.get-release-bot-token.outputs.token }}
run: gh pr merge --squash --auto || gh pr merge --squash

extend-notes:
if: needs.release.outputs.releases_created == 'true' && needs.release.outputs.prs_created == 'false'
name: Extend Release Notes
Expand Down

0 comments on commit 7fbfab2

Please sign in to comment.