Skip to content

Commit 3d6ece6

Browse files
authoredJul 31, 2022
fix: add a specific error message for the commit queue (#645)
1 parent f442797 commit 3d6ece6

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed
 

‎lib/landing_session.js

+7-2
Original file line numberDiff line numberDiff line change
@@ -406,8 +406,13 @@ export default class LandingSession extends Session {
406406

407407
if (!forceLand) {
408408
cli.info(
409-
'Use --fixupAll option, squash the PR manually or land the PR from ' +
410-
'the command line.'
409+
'GITHUB_ACTION' in process.env
410+
411+
? 'Add `commit-queue-squash` label to land the PR as one commit, ' +
412+
'or `commit-queue-rebase` to land as separate commits.'
413+
414+
: 'Use --fixupAll option, squash the PR manually or land the PR ' +
415+
'from the command line.'
411416
);
412417
process.exit(1);
413418
}

0 commit comments

Comments
 (0)
Please sign in to comment.