Skip to content

Commit

Permalink
build: reverted back to commit
Browse files Browse the repository at this point in the history
  • Loading branch information
manchuck committed May 22, 2024
1 parent 190979d commit 2467a29
Showing 1 changed file with 12 additions and 26 deletions.
38 changes: 12 additions & 26 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: Release Action

on:
Expand All @@ -8,6 +9,9 @@ on:
- edited
- released

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

jobs:
test-action:
runs-on: ubuntu-latest
Expand All @@ -22,35 +26,17 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}

- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18.x

- name: Update RELEASES.MD
uses: vonage/[email protected]

- 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: Merge PR
uses: juliangruber/merge-pull-request-action@v1
with:
merge-method: squash
pr: ${{ steps.releasepr.outputs.pull-request-number }}
- 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-with-lease

0 comments on commit 2467a29

Please sign in to comment.