Skip to content

Commit d115ed1

Browse files
fix: remove commit step
1 parent 936482c commit d115ed1

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

.github/workflows/update-v8.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,20 +37,16 @@ jobs:
3737
cat temp-output
3838
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
3939
rm temp-output
40-
- name: Generate commit message if not set
41-
if: env.COMMIT_MSG == ''
42-
run: |
43-
echo "COMMIT_MSG=deps: update v8 to ${{ env.NEW_VERSION }}" >> "$GITHUB_ENV"
4440
- uses: gr2m/create-or-update-pull-request-action@77596e3166f328b24613f7082ab30bf2d93079d5
4541
# Creates a PR or update the Action's existing PR, or
4642
# no-op if the base branch is already up-to-date.
4743
env:
4844
GITHUB_TOKEN: ${{ secrets.GH_USER_TOKEN }}
4945
with:
5046
author: Node.js GitHub Bot <[email protected]>
51-
body: This is an automated update of v8 to ${{ env.NEW_VERSION }}.
47+
body: This is an automated patch update of V8 to ${{ env.NEW_VERSION }}.
5248
branch: actions/update-v8-patch # Custom branch *just* for this Action.
53-
commit-message: ${{ env.COMMIT_MSG }}
54-
labels: dependencies
55-
title: 'deps: update v8 to ${{ env.NEW_VERSION }}'
49+
commit-message: 'deps: patch V8 to ${{ env.NEW_VERSION }}'
50+
labels: v8 engine
51+
title: 'deps: patch v8 to ${{ env.NEW_VERSION }}'
5652
update-pull-request-title-and-body: true

0 commit comments

Comments
 (0)