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

repo sync #22478

Merged
merged 1 commit into from
Dec 5, 2022
Merged
Show file tree
Hide file tree
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
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