Skip to content

Commit

Permalink
Merge pull request #22478 from github/repo-sync
Browse files Browse the repository at this point in the history
repo sync
  • Loading branch information
Octomerger authored Dec 5, 2022
2 parents a04e183 + 4e80ced commit 82891e4
Show file tree
Hide file tree
Showing 11 changed files with 359 additions and 74 deletions.
36 changes: 30 additions & 6 deletions lib/rest/static/decorated/api.github.com.2022-11-28.json
Original file line number Diff line number Diff line change
Expand Up @@ -473448,9 +473448,15 @@
}
},
{
"type": "issue",
"type": "issue_title",
"details": {
"issue_url": "https://api.github.com/repos/octocat/Hello-World/issues/1347"
"issue_title_url": "https://api.github.com/repos/octocat/Hello-World/issues/1347"
}
},
{
"type": "issue_body",
"details": {
"issue_body_url": "https://api.github.com/repos/octocat/Hello-World/issues/1347"
}
},
{
Expand All @@ -473470,7 +473476,8 @@
"type": "string",
"enum": [
"commit",
"issue",
"issue_title",
"issue_body",
"issue_comment"
],
"description": "The location type. Because secrets may be found in different types of resources (ie. code, comments, issues), this field identifies the type of resource where the secret was found.",
Expand Down Expand Up @@ -473543,10 +473550,27 @@
]
},
{
"description": "Represents an 'issue' secret scanning location type. This location type shows that a secret was detected in the title or description of an issue.",
"description": "Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue.",
"type": "object",
"properties": {
"issue_url": {
"issue_title_url": {
"type": "string",
"format": "uri",
"description": "The API URL to get the issue where the secret was detected.",
"examples": [
"https://api.github.com/repos/octocat/Hello-World/issues/1347"
]
}
},
"required": [
"issue_title_url"
]
},
{
"description": "Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue.",
"type": "object",
"properties": {
"issue_body_url": {
"type": "string",
"format": "uri",
"description": "The API URL to get the issue where the secret was detected.",
Expand All @@ -473556,7 +473580,7 @@
}
},
"required": [
"issue_url"
"issue_body_url"
]
},
{
Expand Down
36 changes: 30 additions & 6 deletions lib/rest/static/decorated/ghec.2022-11-28.json
Original file line number Diff line number Diff line change
Expand Up @@ -477591,9 +477591,15 @@
}
},
{
"type": "issue",
"type": "issue_title",
"details": {
"issue_url": "https://api.github.com/repos/octocat/Hello-World/issues/1347"
"issue_title_url": "https://api.github.com/repos/octocat/Hello-World/issues/1347"
}
},
{
"type": "issue_body",
"details": {
"issue_body_url": "https://api.github.com/repos/octocat/Hello-World/issues/1347"
}
},
{
Expand All @@ -477613,7 +477619,8 @@
"type": "string",
"enum": [
"commit",
"issue",
"issue_title",
"issue_body",
"issue_comment"
],
"description": "The location type. Because secrets may be found in different types of resources (ie. code, comments, issues), this field identifies the type of resource where the secret was found.",
Expand Down Expand Up @@ -477686,10 +477693,27 @@
]
},
{
"description": "Represents an 'issue' secret scanning location type. This location type shows that a secret was detected in the title or description of an issue.",
"description": "Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue.",
"type": "object",
"properties": {
"issue_url": {
"issue_title_url": {
"type": "string",
"format": "uri",
"description": "The API URL to get the issue where the secret was detected.",
"examples": [
"https://api.github.com/repos/octocat/Hello-World/issues/1347"
]
}
},
"required": [
"issue_title_url"
]
},
{
"description": "Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue.",
"type": "object",
"properties": {
"issue_body_url": {
"type": "string",
"format": "uri",
"description": "The API URL to get the issue where the secret was detected.",
Expand All @@ -477699,7 +477723,7 @@
}
},
"required": [
"issue_url"
"issue_body_url"
]
},
{
Expand Down
Loading

0 comments on commit 82891e4

Please sign in to comment.