Skip to content

Commit

Permalink
feat(docs): adds docs for statusDetails (#76378)
Browse files Browse the repository at this point in the history
This PR adds documentation for `statusDetails` when resolving a release
with the API
  • Loading branch information
scefali authored Aug 27, 2024
1 parent 57035b3 commit e9626c4
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions api-docs/paths/events/issue-details.json
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,28 @@
"type": "string",
"description": "The new status for the issues. Valid values are `\"resolved\"`, `\"reprocessing\"`, `\"unresolved\"`, and `\"ignored\"`."
},
"statusDetails": {
"type": "object",
"description": "Additional details about the status of the issue.",
"properties": {
"inNextRelease": {
"type": "boolean",
"description": "Indicates if the issue is resolved in the next release based on the last seen release of that issue."
},
"inUpcomingRelease": {
"type": "boolean",
"description": "Indicates if the issue is resolved in an upcoming release."
},
"inRelease": {
"type": "string",
"description": "The version of the release in which the issue is resolved."
},
"inCommit": {
"type": "string",
"description": "The commit hash in which the issue is resolved."
}
}
},
"assignedTo": {
"type": "string",
"description": "The actor id (or username) of the user or team that should be assigned to this issue."
Expand Down

0 comments on commit e9626c4

Please sign in to comment.