Skip to content

Commit

Permalink
chore: update checker naming prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
sumire88 committed Jan 8, 2024
1 parent 17c7234 commit 27a9fc9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/handlers/check_pr_tested_label.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
} from "../common";
import { constructMetadata } from "../events/metadata";

const check_run_name = `${process.env.APP_NAME}/check_pr_tested_label`;
const check_run_name = `${process.env.APP_NAME} / check_pr_tested_label`;

export = {
name: check_run_name,
Expand Down
2 changes: 1 addition & 1 deletion src/handlers/validate_pr_title.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const validateTitle = (input: string): boolean => {
}
};

const check_run_name = `${process.env.APP_NAME}/validate_pr_title`;
const check_run_name = `${process.env.APP_NAME} / validate_pr_title`;

export = {
name: check_run_name,
Expand Down

0 comments on commit 27a9fc9

Please sign in to comment.