From eea156b2cb8deecfcf82d52aa1b71ba4995c7d68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Ribaudo?= Date: Fri, 19 Jun 2020 03:51:00 +0200 Subject: [PATCH] Migrate from "master" branch to "main" (#11715) * Remove dead link * Use consistent "homepage" url in package.json * Update md links * Update comment link in parser d.ts * Add comment in gitpod config * Update circleci config * Update PULL_REQUEST_TEMPLATE * Update badges * Trigger CI * Update 404 link --- .circleci/config.yml | 24 ++++++++---- .github/PULL_REQUEST_TEMPLATE.md | 2 +- .gitpod.yml | 2 +- CONTRIBUTING.md | 38 +++++++++---------- README.md | 8 ++-- doc/ast/spec.md | 2 +- eslint/babel-eslint-parser/README.md | 4 +- eslint/babel-eslint-parser/package.json | 2 +- .../package.json | 2 +- eslint/babel-eslint-plugin/package.json | 2 +- packages/babel-parser/CHANGELOG.md | 4 +- .../babel-parser/typings/babel-parser.d.ts | 2 +- .../package.json | 2 +- packages/babel-preset-env/CONTRIBUTING.md | 18 ++++----- packages/babel-runtime/package.json | 2 +- packages/babel-standalone/package.json | 2 +- packages/babel-traverse/src/path/family.js | 2 +- 17 files changed, 63 insertions(+), 55 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c5f9a1781d4f..8258aba3330e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -71,7 +71,7 @@ jobs: steps: - checkout - run: - name: Sync with latest master branch (only on PRs) + name: Sync with latest main branch (only on PRs) command: | if [ -n "$CIRCLE_PULL_REQUEST" ] then @@ -92,8 +92,8 @@ jobs: npm i tap-mocha-reporter --save-dev node lib/download-node - run: - name: Download master branch Test262 artifact - command: node lib/download-master-artifact ~/master.tap + name: Download main branch Test262 artifact + command: node lib/download-main-artifact ~/test262-main.tap <<: *test262_workdir - run: name: Run Test262 @@ -106,10 +106,10 @@ jobs: cat ~/test262.tap | $(npm bin)/tap-mocha-reporter spec || true <<: *test262_workdir - run: - name: Compare previous master branch & current job results + name: Compare previous main branch & current job results command: | mkdir -p ~/test-results/test262 - node lib/compare-results ~/master.tap ~/test262.tap | tee ~/diff.tap + node lib/compare-results ~/test262-main.tap ~/test262.tap | tee ~/diff.tap <<: *test262_workdir - store_artifacts: *artifact_test262_diff_tap - run: @@ -171,28 +171,36 @@ workflows: build-standalone: jobs: - build-standalone - test262-master: + test262: jobs: - test262: filters: branches: only: - - master - test262: + - main + - next-8-dev + - next-8-rebased + test262-pr: jobs: - approve-test262-run: type: approval filters: branches: ignore: + - main - master + - next-8-dev + - next-8-rebased - test262: requires: - approve-test262-run filters: branches: ignore: + - main - master + - next-8-dev + - next-8-rebased e2e: jobs: - publish-verdaccio diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index f805376b4926..fc20dd4d88b6 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,6 +1,6 @@