mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
tools: update main branch name
PR-URL: https://github.com/nodejs/node/pull/43440 Refs: https://github.com/nodejs/node/issues/33864 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: Beth Griggs <bgriggs@redhat.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
This commit is contained in:
parent
2887b1b970
commit
b6c6cc7000
@ -7,7 +7,7 @@ REPOSITORY=$2
|
||||
shift 2
|
||||
|
||||
UPSTREAM=origin
|
||||
DEFAULT_BRANCH=master
|
||||
DEFAULT_BRANCH=main
|
||||
|
||||
COMMIT_QUEUE_LABEL="commit-queue"
|
||||
COMMIT_QUEUE_FAILED_LABEL="commit-queue-failed"
|
||||
@ -86,7 +86,7 @@ for pr in "$@"; do
|
||||
commit_title=$(git log -1 --pretty='format:%s')
|
||||
commit_body=$(git log -1 --pretty='format:%b')
|
||||
commit_head=$(grep 'Fetched commits as' output | cut -d. -f3 | xargs git rev-parse)
|
||||
|
||||
|
||||
jq -n \
|
||||
--arg title "${commit_title}" \
|
||||
--arg body "${commit_body}" \
|
||||
|
@ -41,7 +41,7 @@ const remoteUrl = execSync(`git config remote.${trackingRemote}.url`);
|
||||
const repo = (remoteUrl.match(/(\w+\/\w+)\.git\r?\n?$/) ||
|
||||
['', 'nodejs/node'])[1];
|
||||
|
||||
const hash = execSync('git log -1 --pretty=%H') || 'master';
|
||||
const hash = execSync('git log -1 --pretty=%H') || 'main';
|
||||
const tag = execSync(`git describe --contains ${hash}`).split('\n')[0] || hash;
|
||||
|
||||
// Extract definitions from each file specified.
|
||||
|
@ -522,7 +522,7 @@ function altDocs(filename, docCreated, versions) {
|
||||
}
|
||||
|
||||
function editOnGitHub(filename) {
|
||||
return `<li class="edit_on_github"><a href="https://github.com/nodejs/node/edit/master/doc/api/${filename}.md">Edit on GitHub</a></li>`;
|
||||
return `<li class="edit_on_github"><a href="https://github.com/nodejs/node/edit/main/doc/api/${filename}.md">Edit on GitHub</a></li>`;
|
||||
}
|
||||
|
||||
function gtocPicker(id) {
|
||||
|
@ -32,7 +32,7 @@ const outFile = (process.argv.length > 2 ? process.argv[2] : undefined);
|
||||
|
||||
async function versions() {
|
||||
// The CHANGELOG.md on release branches may not reference newer semver
|
||||
// majors of Node.js so fetch and parse the version from the master branch.
|
||||
// majors of Node.js so fetch and parse the version from the main branch.
|
||||
const url =
|
||||
'https://raw.githubusercontent.com/nodejs/node/HEAD/CHANGELOG.md';
|
||||
let changelog;
|
||||
|
@ -1,7 +1,7 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
// Usage:
|
||||
// git diff upstream/master...HEAD -G"pr-url:" -- "*.md" | \
|
||||
// git diff upstream/main...HEAD -G"pr-url:" -- "*.md" | \
|
||||
// ./tools/lint-pr-url.mjs <expected-pr-url>
|
||||
|
||||
import process from 'node:process';
|
||||
|
@ -49,5 +49,5 @@ echo "Please git add npm, commit the new version, and whitespace-fix:"
|
||||
echo ""
|
||||
echo "$ git add -A deps/npm"
|
||||
echo "$ git commit -m \"deps: upgrade npm to $NPM_VERSION\""
|
||||
echo "$ git rebase --whitespace=fix master"
|
||||
echo "$ git rebase --whitespace=fix main"
|
||||
echo ""
|
||||
|
Loading…
Reference in New Issue
Block a user