File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -27,12 +27,12 @@ jobs:
27
27
subsystem : ${{ fromJSON(github.event.inputs.subsystems || '["url", "urlpattern", "WebCryptoAPI"]') }}
28
28
29
29
steps :
30
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
30
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
31
31
with :
32
32
persist-credentials : false
33
33
34
34
- name : Install Node.js
35
- uses : actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
35
+ uses : actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
36
36
with :
37
37
node-version : ${{ env.NODE_VERSION }}
38
38
70
70
- name : Open or update PR for the subsystem update
71
71
uses : gr2m/create-or-update-pull-request-action@77596e3166f328b24613f7082ab30bf2d93079d5
72
72
with :
73
- branch : actions/update-wpt-${{ matrix.subsystem }}
73
+ # The create-or-update-pull-request-action matches the branch name by prefix,
74
+ # which is why we need to add the -wpt suffix. If we dont do that, we risk matching wrong PRs,
75
+ # like for example "url" mistakenly matching and updating the "urlpattern" PR
76
+ # as seen in https://github.com/nodejs/node/pull/57368
77
+ branch : actions/update-${{ matrix.subsystem }}-wpt
74
78
author :
Node.js GitHub Bot <[email protected] >
75
79
title : ' test: update WPT for ${{ matrix.subsystem }} to ${{ env.short_version }}'
76
80
commit-message : ' test: update WPT for ${{ matrix.subsystem }} to ${{ env.short_version }}'
You can’t perform that action at this time.
0 commit comments