Skip to content

Commit

Permalink
fix: update wont_fix typo in secret_scanning_alert (#807)
Browse files Browse the repository at this point in the history
  • Loading branch information
zegl committed Jun 7, 2023
1 parent a5c455c commit b709535
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -14,7 +14,7 @@
"properties": {
"resolution": {
"type": "string",
"enum": ["false_positive", "wontfix", "revoked", "used_in_tests"]
"enum": ["false_positive", "wont_fix", "revoked", "used_in_tests"]
},
"resolved_by": { "$ref": "common/user.schema.json" },
"resolved_at": { "type": "string", "format": "date-time" }
Expand Down
2 changes: 1 addition & 1 deletion payload-types/schema.d.ts
Expand Up @@ -7199,7 +7199,7 @@ export interface SecretScanningAlertReopenedEvent {
export interface SecretScanningAlertResolvedEvent {
action: "resolved";
alert: SecretScanningAlert & {
resolution: "false_positive" | "wontfix" | "revoked" | "used_in_tests";
resolution: "false_positive" | "wont_fix" | "revoked" | "used_in_tests";
resolved_by: User;
resolved_at: string;
};
Expand Down

0 comments on commit b709535

Please sign in to comment.