Skip to content

Commit

Permalink
fix(github-actions): rename status check name to `Merge Ready Trackin…
Browse files Browse the repository at this point in the history
…g` (#941)

PR Close #941
  • Loading branch information
josephperrott committed Dec 14, 2022
1 parent 51b292e commit f1e8862
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion github-actions/unified-status-check/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -23725,7 +23725,7 @@ var PullRequest = class {
}
}
};
PullRequest.checkName = "Unified Status";
PullRequest.checkName = "Merge Ready Tracking";
PullRequest.ignored = [PullRequest.checkName, ...ignoredStatuses];
var checkConclusionStateToStatusStateMap = /* @__PURE__ */ new Map([
["ACTION_REQUIRED", "pending"],
Expand Down
2 changes: 1 addition & 1 deletion github-actions/unified-status-check/src/pull-request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ type CheckOrStatus = NonNullable<
/** A pull request retrieved from Github. */
export class PullRequest {
/** The name of used for the check. */
private static checkName = 'Unified Status';
private static checkName = 'Merge Ready Tracking';
/** All of the ignored statues and checks for pull requests */
private static ignored = [PullRequest.checkName, ...ignoredStatuses];
/** The sha of the pull request. */
Expand Down

0 comments on commit f1e8862

Please sign in to comment.