File tree 1 file changed +9
-8
lines changed
1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -35,22 +35,23 @@ jobs:
35
35
node-version : ${{ env.NODE_VERSION }}
36
36
- name : Install @node-core/utils
37
37
run : npm install -g @node-core/utils
38
+ - name : Setup Git config
39
+ run : |
40
+ git config --global user.name "Node.js GitHub Bot"
41
+ git config --global user.email "[email protected] "
38
42
- name : Check and download new V8 version
39
43
run : |
40
44
./tools/dep_updaters/update-v8-patch.sh > temp-output
41
45
cat temp-output
42
46
tail -n1 temp-output | grep "NEW_VERSION=" >> "$GITHUB_ENV" || true
43
47
rm temp-output
44
- - uses : gr2m /create-or-update- pull-request-action@86ec1766034c8173518f61d2075cc2a173fb8c97 # v1.9.4
48
+ - uses : peter-evans /create-pull-request@6d6857d36972b65feb161a90e484f2984215f83e # v6.0.5
45
49
# Creates a PR or update the Action's existing PR, or
46
50
# no-op if the base branch is already up-to-date.
47
- env :
48
- GITHUB_TOKEN : ${{ secrets.GH_USER_TOKEN }}
49
51
with :
50
- author :
Node.js GitHub Bot <[email protected] >
51
- body : This is an automated patch update of V8 to ${{ env.NEW_VERSION }}.
52
+ token : ${{ secrets.GH_USER_TOKEN }}
52
53
branch : actions/update-v8-patch # Custom branch *just* for this Action.
53
- commit-message : ' deps: patch V8 to ${{ env.NEW_VERSION }}'
54
- labels : v8 engine
54
+ delete-branch : true
55
55
title : ' deps: patch V8 to ${{ env.NEW_VERSION }}'
56
- update-pull-request-title-and-body : true
56
+ body : This is an automated patch update of V8 to ${{ env.NEW_VERSION }}.
57
+ labels : v8 engine
You can’t perform that action at this time.
0 commit comments