Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add fixedFIndings at changeset level #42

Merged
merged 3 commits into from
Dec 4, 2024
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
7 changes: 6 additions & 1 deletion codetf.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,11 @@
"provisional": {
"type": "boolean",
"description": "Indicates that the fix is provisional"
},
"fixedFindings": {
"type": "array",
"description": "List of findings that were fixed by this changeset. Used for findings that can't be attached to a specific change.",
"items": { "$ref": "#/definitions/detector/fixedFinding" }
}
},
"required": ["path", "diff", "changes"]
Expand Down Expand Up @@ -211,7 +216,7 @@
"description": "The package actions that were needed to support changes to the file",
"items": { "$ref": "#/definitions/packageAction" }
},
"findings": {
"fixedFindings": {
"type": "array",
"description": "List of findings that were fixed at this location",
"items": { "$ref": "#/definitions/detector/fixedFinding" }
Expand Down