File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 19
19
uses : actions/checkout@v3
20
20
with :
21
21
fetch-depth : 0
22
- ref : master
22
+ ref : main
23
23
repository : npm/node
24
24
token : ${{ secrets.NODE_PULL_REQUEST_TOKEN }}
25
25
- name : Setup git user
29
29
- name : Sync upstream changes
30
30
uses : aormsby/Fork-Sync-With-Upstream-action@v3.2
31
31
with :
32
- target_sync_branch : master
32
+ target_sync_branch : main
33
33
target_repo_token : ${{ secrets.NODE_PULL_REQUEST_TOKEN }}
34
- upstream_sync_branch : master
34
+ upstream_sync_branch : main
35
35
upstream_sync_repo : nodejs/node
36
36
upstream_pull_args : --ff-only
37
37
- name : Run dependency updates and create PR
46
46
47
47
if [ "$npm_version" == "latest" ]; then
48
48
npm_tag=`npm view npm@latest version`
49
- base_branch="master "
49
+ base_branch="main "
50
50
else
51
51
npm_tag="$npm_version"
52
52
base_branch="v14.x-staging"
81
81
82
82
git add -A deps/npm
83
83
git commit -m "$message"
84
- git rebase --whitespace=fix master
84
+ git rebase --whitespace=fix main
85
85
86
86
if [[ "$dry_run" == "true" ]]; then
87
87
git status
You can’t perform that action at this time.
0 commit comments