Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit ec43f8f

Browse files
committed
Use tools.exit.success
1 parent cff6991 commit ec43f8f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

actions/schema-up/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Toolkit.run(async tools => {
2121
);
2222
if (hasSchemaChanges === 0) {
2323
tools.log.info('No schema changes to fetch.');
24-
tools.exit.neutral('Nothing to do.');
24+
tools.exit.success('Nothing to do.');
2525
}
2626

2727
tools.log.info('Checking for unmerged schema update pull requests.');
@@ -39,7 +39,7 @@ Toolkit.run(async tools => {
3939
const repositoryId = openPullRequestsQuery.repository.id;
4040

4141
if (openPullRequestsQuery.repository.pullRequests.totalCount > 0) {
42-
tools.exit.neutral('One or more schema update pull requests are already open. Please resolve those first.');
42+
tools.exit.success('One or more schema update pull requests are already open. Please resolve those first.');
4343
}
4444

4545
const branchName = `schema-update/${Date.now()}`;

0 commit comments

Comments
 (0)