We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f442797 commit 3d6ece6Copy full SHA for 3d6ece6
lib/landing_session.js
@@ -406,8 +406,13 @@ export default class LandingSession extends Session {
406
407
if (!forceLand) {
408
cli.info(
409
- 'Use --fixupAll option, squash the PR manually or land the PR from ' +
410
- 'the command line.'
+ 'GITHUB_ACTION' in process.env
+
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.'
416
);
417
process.exit(1);
418
}
0 commit comments