Skip to content

Commit

Permalink
build: revert to pull request
Browse files Browse the repository at this point in the history
  • Loading branch information
manchuck committed May 22, 2024
1 parent f0f261d commit 93af05b
Showing 1 changed file with 24 additions and 40 deletions.
64 changes: 24 additions & 40 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ on:
- released

env:
GH_TOKEN: ${{ secrets.GH_WIKI_PERSONAL_ACCESS_TOKEN }}

jobs:
test-action:
Expand All @@ -32,43 +31,28 @@ jobs:
- name: Update RELEASES.MD
uses: vonage/[email protected]

- name: GH_TOKEN
if: env.GH_TOKEN == ''
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: echo "GH_TOKEN=${GITHUB_TOKEN}" >> $GITHUB_ENV

- name: changelog
run: |
git config --local user.name github-actions
git config --local user.email [email protected]
git add RELEASES.md
git commit -m "chore: updated release log"
git push --force
- name: Release PR
id: releasepr
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GH_WIKI_PERSONAL_ACCESS_TOKEN }}
add-paths: RELEASES.md
commit-message: 'chore: updating release log'
title: 'chore: updating release log'
delete-branch: true
branch: 'release-log'
base: '3.x'

- name: Debug
run: echo ${{ steps.releasepr.outputs.pull-request-number }}

- name: Approve PR
uses: juliangruber/approve-pull-request-action@v2
with:
number: ${{ steps.releasepr.outputs.pull-request-number }}

# - name: Release PR
# id: releasepr
# uses: peter-evans/create-pull-request@v6
# with:
# add-paths: RELEASES.md
# commit-message: 'chore: updating release log'
# title: 'chore: updating release log'
# delete-branch: true
# branch: 'release-log'
# base: '3.x'
#
# - name: Debug
# run: echo ${{ steps.releasepr.outputs.pull-request-number }}
#
# - name: Approve PR
# uses: juliangruber/approve-pull-request-action@v2
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}
# number: ${{ steps.releasepr.outputs.pull-request-number }}
#
# - name: Merge PR
# uses: juliangruber/merge-pull-request-action@v1
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}
# merge-method: squash
# pr: ${{ steps.releasepr.outputs.pull-request-number }}
- name: Merge PR
uses: juliangruber/merge-pull-request-action@v1
with:
merge-method: squash
pr: ${{ steps.releasepr.outputs.pull-request-number }}

0 comments on commit 93af05b

Please sign in to comment.