소스 검색

meta: warn about not merging PR manually (#3492)

* warn about not merging PR manually

* Update commit-and-open-pr.js
Artur Paikin 3 년 전
부모
커밋
f1952bf0e2
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      private/release/commit-and-open-pr.js

+ 4 - 0
private/release/commit-and-open-pr.js

@@ -22,4 +22,8 @@ export default async function commit (spawnOptions, ...files) {
                  || `git@github.com:${REPO_OWNER}/${REPO_NAME}.git`
 
   console.log(`Please run \`git push ${remote} ${sha}:refs/heads/release\`.`)
+  console.log(`An automation will kick off and open a release candidate PR 
+    on the GitHub repository. Do not merge it manually! Review the PR (you may need to close and
+    re-open so the CI and test will run on it). If everything looks good, approve the PR — 
+    this will publish updated packages to npm, then the PR will be merged.`)
 }