Skip to content

Commit

Permalink
feat: Repository#environments(names) (#908)
Browse files Browse the repository at this point in the history
  • Loading branch information
octokitbot committed Mar 7, 2024
1 parent 59e2866 commit 4f4197c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 13 deletions.
2 changes: 0 additions & 2 deletions schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22482,8 +22482,6 @@ export type RepositoryRuleType =
* request and required workflow checks to pass before they can be merged.
*/
| 'REQUIRED_WORKFLOW_STATUS_CHECKS'
/** Commits pushed to matching refs must have verified signatures. */
| 'RULESET_REQUIRED_SIGNATURES'
/** Secret scanning */
| 'SECRET_SCANNING'
/** Tag */
Expand Down
10 changes: 5 additions & 5 deletions schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -42488,6 +42488,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
"""
last: Int

"""
The names of the environments to be returned.
"""
names: [String!] = []

"""
Ordering options for the environments
"""
Expand Down Expand Up @@ -45191,11 +45196,6 @@ enum RepositoryRuleType {
"""
REQUIRED_WORKFLOW_STATUS_CHECKS

"""
Commits pushed to matching refs must have verified signatures.
"""
RULESET_REQUIRED_SIGNATURES

"""
Secret scanning
"""
Expand Down
6 changes: 0 additions & 6 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -117740,12 +117740,6 @@
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "RULESET_REQUIRED_SIGNATURES",
"description": "Commits pushed to matching refs must have verified signatures.",
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "SECRET_SCANNING",
"description": "Secret scanning",
Expand Down

0 comments on commit 4f4197c

Please sign in to comment.