Skip to content

Commit dac06bd

Browse files
authored
Action ran graphql script"update-files"
1 parent 6965b3d commit dac06bd

9 files changed

Lines changed: 880 additions & 33 deletions

data/graphql/ghae/schema.docs-ghae.graphql

Lines changed: 94 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1536,6 +1536,31 @@ type BranchProtectionRule implements Node {
15361536
last: Int
15371537
): BranchProtectionRuleConflictConnection!
15381538

1539+
"""
1540+
A list of actors able to force push for this branch protection rule.
1541+
"""
1542+
bypassForcePushAllowances(
1543+
"""
1544+
Returns the elements in the list that come after the specified cursor.
1545+
"""
1546+
after: String
1547+
1548+
"""
1549+
Returns the elements in the list that come before the specified cursor.
1550+
"""
1551+
before: String
1552+
1553+
"""
1554+
Returns the first _n_ elements from the list.
1555+
"""
1556+
first: Int
1557+
1558+
"""
1559+
Returns the last _n_ elements from the list.
1560+
"""
1561+
last: Int
1562+
): BypassForcePushAllowanceConnection!
1563+
15391564
"""
15401565
A list of actors able to bypass PRs for this branch protection rule.
15411566
"""
@@ -1833,6 +1858,62 @@ type BranchProtectionRuleEdge {
18331858
node: BranchProtectionRule
18341859
}
18351860

1861+
"""
1862+
A team or user who has the ability to bypass a force push requirement on a protected branch.
1863+
"""
1864+
type BypassForcePushAllowance implements Node {
1865+
"""
1866+
The actor that can dismiss.
1867+
"""
1868+
actor: BranchActorAllowanceActor
1869+
1870+
"""
1871+
Identifies the branch protection rule associated with the allowed user or team.
1872+
"""
1873+
branchProtectionRule: BranchProtectionRule
1874+
id: ID!
1875+
}
1876+
1877+
"""
1878+
The connection type for BypassForcePushAllowance.
1879+
"""
1880+
type BypassForcePushAllowanceConnection {
1881+
"""
1882+
A list of edges.
1883+
"""
1884+
edges: [BypassForcePushAllowanceEdge]
1885+
1886+
"""
1887+
A list of nodes.
1888+
"""
1889+
nodes: [BypassForcePushAllowance]
1890+
1891+
"""
1892+
Information to aid in pagination.
1893+
"""
1894+
pageInfo: PageInfo!
1895+
1896+
"""
1897+
Identifies the total count of items in the connection.
1898+
"""
1899+
totalCount: Int!
1900+
}
1901+
1902+
"""
1903+
An edge in a connection.
1904+
"""
1905+
type BypassForcePushAllowanceEdge {
1906+
"""
1907+
A cursor for use in pagination.
1908+
"""
1909+
cursor: String!
1910+
1911+
"""
1912+
The item at the end of the edge.
1913+
"""
1914+
node: BypassForcePushAllowance
1915+
}
1916+
18361917
"""
18371918
A team or user who has the ability to bypass a pull request requirement on a protected branch.
18381919
"""
@@ -5197,6 +5278,11 @@ input CreateBranchProtectionRuleInput {
51975278
"""
51985279
allowsForcePushes: Boolean
51995280

5281+
"""
5282+
A list of User or Team IDs allowed to bypass force push targeting matching branches.
5283+
"""
5284+
bypassForcePushActorIds: [ID!]
5285+
52005286
"""
52015287
A list of User or Team IDs allowed to bypass pull requests targeting matching branches.
52025288
"""
@@ -21879,7 +21965,7 @@ type OrganizationAuditEntryEdge {
2187921965
}
2188021966

2188121967
"""
21882-
The connection type for Organization.
21968+
A list of organizations managed by an enterprise.
2188321969
"""
2188421970
type OrganizationConnection {
2188521971
"""
@@ -26558,9 +26644,9 @@ type Push implements Node {
2655826644
previousSha: GitObjectID
2655926645

2656026646
"""
26561-
The user who pushed
26647+
The actor who pushed
2656226648
"""
26563-
pusher: User!
26649+
pusher: Actor!
2656426650

2656526651
"""
2656626652
The repository that was pushed to
@@ -38063,6 +38149,11 @@ input UpdateBranchProtectionRuleInput {
3806338149
"""
3806438150
branchProtectionRuleId: ID! @possibleTypes(concreteTypes: ["BranchProtectionRule"])
3806538151

38152+
"""
38153+
A list of User or Team IDs allowed to bypass force push targeting matching branches.
38154+
"""
38155+
bypassForcePushActorIds: [ID!]
38156+
3806638157
"""
3806738158
A list of User or Team IDs allowed to bypass pull requests targeting matching branches.
3806838159
"""

data/graphql/ghec/schema.docs.graphql

Lines changed: 94 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1691,6 +1691,31 @@ type BranchProtectionRule implements Node {
16911691
last: Int
16921692
): BranchProtectionRuleConflictConnection!
16931693

1694+
"""
1695+
A list of actors able to force push for this branch protection rule.
1696+
"""
1697+
bypassForcePushAllowances(
1698+
"""
1699+
Returns the elements in the list that come after the specified cursor.
1700+
"""
1701+
after: String
1702+
1703+
"""
1704+
Returns the elements in the list that come before the specified cursor.
1705+
"""
1706+
before: String
1707+
1708+
"""
1709+
Returns the first _n_ elements from the list.
1710+
"""
1711+
first: Int
1712+
1713+
"""
1714+
Returns the last _n_ elements from the list.
1715+
"""
1716+
last: Int
1717+
): BypassForcePushAllowanceConnection!
1718+
16941719
"""
16951720
A list of actors able to bypass PRs for this branch protection rule.
16961721
"""
@@ -1988,6 +2013,62 @@ type BranchProtectionRuleEdge {
19882013
node: BranchProtectionRule
19892014
}
19902015

2016+
"""
2017+
A team or user who has the ability to bypass a force push requirement on a protected branch.
2018+
"""
2019+
type BypassForcePushAllowance implements Node {
2020+
"""
2021+
The actor that can dismiss.
2022+
"""
2023+
actor: BranchActorAllowanceActor
2024+
2025+
"""
2026+
Identifies the branch protection rule associated with the allowed user or team.
2027+
"""
2028+
branchProtectionRule: BranchProtectionRule
2029+
id: ID!
2030+
}
2031+
2032+
"""
2033+
The connection type for BypassForcePushAllowance.
2034+
"""
2035+
type BypassForcePushAllowanceConnection {
2036+
"""
2037+
A list of edges.
2038+
"""
2039+
edges: [BypassForcePushAllowanceEdge]
2040+
2041+
"""
2042+
A list of nodes.
2043+
"""
2044+
nodes: [BypassForcePushAllowance]
2045+
2046+
"""
2047+
Information to aid in pagination.
2048+
"""
2049+
pageInfo: PageInfo!
2050+
2051+
"""
2052+
Identifies the total count of items in the connection.
2053+
"""
2054+
totalCount: Int!
2055+
}
2056+
2057+
"""
2058+
An edge in a connection.
2059+
"""
2060+
type BypassForcePushAllowanceEdge {
2061+
"""
2062+
A cursor for use in pagination.
2063+
"""
2064+
cursor: String!
2065+
2066+
"""
2067+
The item at the end of the edge.
2068+
"""
2069+
node: BypassForcePushAllowance
2070+
}
2071+
19912072
"""
19922073
A team or user who has the ability to bypass a pull request requirement on a protected branch.
19932074
"""
@@ -5434,6 +5515,11 @@ input CreateBranchProtectionRuleInput {
54345515
"""
54355516
allowsForcePushes: Boolean
54365517

5518+
"""
5519+
A list of User or Team IDs allowed to bypass force push targeting matching branches.
5520+
"""
5521+
bypassForcePushActorIds: [ID!]
5522+
54375523
"""
54385524
A list of User or Team IDs allowed to bypass pull requests targeting matching branches.
54395525
"""
@@ -24002,7 +24088,7 @@ type OrganizationAuditEntryEdge {
2400224088
}
2400324089

2400424090
"""
24005-
The connection type for Organization.
24091+
A list of organizations managed by an enterprise.
2400624092
"""
2400724093
type OrganizationConnection {
2400824094
"""
@@ -29754,9 +29840,9 @@ type Push implements Node {
2975429840
previousSha: GitObjectID
2975529841

2975629842
"""
29757-
The user who pushed
29843+
The actor who pushed
2975829844
"""
29759-
pusher: User!
29845+
pusher: Actor!
2976029846

2976129847
"""
2976229848
The repository that was pushed to
@@ -43213,6 +43299,11 @@ input UpdateBranchProtectionRuleInput {
4321343299
"""
4321443300
branchProtectionRuleId: ID! @possibleTypes(concreteTypes: ["BranchProtectionRule"])
4321543301

43302+
"""
43303+
A list of User or Team IDs allowed to bypass force push targeting matching branches.
43304+
"""
43305+
bypassForcePushActorIds: [ID!]
43306+
4321643307
"""
4321743308
A list of User or Team IDs allowed to bypass pull requests targeting matching branches.
4321843309
"""

0 commit comments

Comments
 (0)