Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions lib/landing_session.js
Original file line number Diff line number Diff line change
Expand Up @@ -387,8 +387,13 @@ export default class LandingSession extends Session {

if (!forceLand) {
cli.info(
'Use --fixupAll option, squash the PR manually or land the PR from ' +
'the command line.'
'GITHUB_ACTION' in process.env

? 'Add `commit-queue-squash` label to land the PR as one commit, ' +
'or `commit-queue-rebase` to land as separate commits.'

: 'Use --fixupAll option, squash the PR manually or land the PR ' +
'from the command line.'
);
process.exit(1);
}
Expand Down