Skip to content

Commit 0a5a3ab

Browse files
authored
Merge pull request #25785 from github/repo-sync
repo sync
2 parents ca109b0 + 3653454 commit 0a5a3ab

File tree

10 files changed

+415
-105
lines changed

10 files changed

+415
-105
lines changed

content/account-and-profile/setting-up-and-managing-your-github-profile/customizing-your-profile/personalizing-your-profile.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ If you authored any commit(s) present in the commit history for the listed tag o
227227
| [pyparsing/pyparsing](https://github.com/pyparsing/pyparsing) | 2.4.7 | [pyparsing_2.4.7](https://github.com/pyparsing/pyparsing/releases/tag/pyparsing_2.4.7) |
228228
| [pyserial/pyserial](https://github.com/pyserial/pyserial) | 3.5 | [v3.5](https://github.com/pyserial/pyserial/releases/tag/v3.5) |
229229
| [dateutil/dateutil](https://github.com/dateutil/dateutil) | 2.8.1 | [2.8.1](https://github.com/dateutil/dateutil/releases/tag/2.8.1) |
230-
| [yaml/pyyaml ](https://github.com/yaml/pyyaml) | 5.4.1 | [5.4.1](https://github.com/yaml/pyyaml/releases/tag/5.4.1) |
230+
| [yaml/pyyaml](https://github.com/yaml/pyyaml) | 5.4.1 | [5.4.1](https://github.com/yaml/pyyaml/releases/tag/5.4.1) |
231231
| [psf/requests](https://github.com/psf/requests) | 2.25.1 | [v2.25.1](https://github.com/psf/requests/releases/tag/v2.25.1) |
232232
| [boto/s3transfer](https://github.com/boto/s3transfer) | 0.3.4 | [0.3.4](https://github.com/boto/s3transfer/releases/tag/0.3.4) |
233233
| [enthought/scimath](https://github.com/enthought/scimath) | 4.2.0 | [4.2.0](https://github.com/enthought/scimath/releases/tag/4.2.0) |

content/admin/overview/about-upgrades-to-new-releases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ To upgrade your enterprise to a new release, see "[AUTOTITLE](/enterprise-server
4545
## Further reading
4646

4747
- [ {% data variables.product.prodname_roadmap %} ]( {% data variables.product.prodname_roadmap_link %} ) in the `github/roadmap` repository{% ifversion ghae %}
48-
- [ {% data variables.product.prodname_ghe_managed %} release notes](/admin/release-notes)
48+
- [{% data variables.product.prodname_ghe_managed %} release notes](/admin/release-notes)
4949
{% endif %}

content/education/guides.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ shortTitle: Guides
1212
Teachers, students, and researchers can use tools from {% data variables.product.product_name %} to enrich a software development curriculum and develop real-world collaboration skills.
1313

1414
- [Sign up for a new {% data variables.product.prodname_dotcom %} account](/get-started/signing-up-for-github/signing-up-for-a-new-github-account)
15-
- [Git and {% data variables.product.prodname_dotcom %} quickstart ](/get-started/quickstart)
15+
- [Git and {% data variables.product.prodname_dotcom %} quickstart](/get-started/quickstart)
1616
- [About {% data variables.product.prodname_global_campus %} for students](/education/explore-the-benefits-of-teaching-and-learning-with-github-education/github-global-campus-for-students/about-github-global-campus-for-students)
1717
- [Apply to {% data variables.product.prodname_global_campus %} as a teacher](/education/explore-the-benefits-of-teaching-and-learning-with-github-education/github-global-campus-for-teachers/apply-to-github-global-campus-as-a-teacher)
1818
- [Apply to {% data variables.product.prodname_global_campus %} as a student](/education/explore-the-benefits-of-teaching-and-learning-with-github-education/github-global-campus-for-students/apply-to-github-global-campus-as-a-student)

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

Lines changed: 59 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -24130,6 +24130,16 @@ type Organization implements Actor & AnnouncementBanner & MemberStatusable & Nod
2413024130
"""
2413124131
resourcePath: URI!
2413224132

24133+
"""
24134+
Returns a single ruleset from the current organization by ID.
24135+
"""
24136+
ruleset(
24137+
"""
24138+
The ID of the ruleset to be returned.
24139+
"""
24140+
databaseId: Int!
24141+
): RepositoryRuleset
24142+
2413324143
"""
2413424144
A list of rulesets for this organization.
2413524145
"""
@@ -27954,7 +27964,7 @@ enum PullRequestOrderField {
2795427964
}
2795527965

2795627966
"""
27957-
Parameters to be used for the pull_request rule
27967+
Require all commits be made to a non-target branch and submitted via a pull request before they can be merged.
2795827968
"""
2795927969
type PullRequestParameters {
2796027970
"""
@@ -27984,7 +27994,7 @@ type PullRequestParameters {
2798427994
}
2798527995

2798627996
"""
27987-
Parameters to be used for the pull_request rule
27997+
Require all commits be made to a non-target branch and submitted via a pull request before they can be merged.
2798827998
"""
2798927999
input PullRequestParametersInput {
2799028000
"""
@@ -35210,6 +35220,16 @@ type Repository implements Node & ProjectOwner & RepositoryInfo & Starrable & Su
3521035220
"""
3521135221
resourcePath: URI!
3521235222

35223+
"""
35224+
Returns a single ruleset from the current repository by ID.
35225+
"""
35226+
ruleset(
35227+
"""
35228+
The ID of the ruleset to be returned.
35229+
"""
35230+
databaseId: Int!
35231+
): RepositoryRuleset
35232+
3521335233
"""
3521435234
A list of rulesets for this repository.
3521535235
"""
@@ -36646,42 +36666,46 @@ enum RepositoryRuleType {
3664636666
COMMIT_MESSAGE_PATTERN
3664736667

3664836668
"""
36649-
Creation
36669+
Only allow users with bypass permission to create matching refs.
3665036670
"""
3665136671
CREATION
3665236672

3665336673
"""
36654-
Deletion
36674+
Only allow users with bypass permissions to delete matching refs.
3665536675
"""
3665636676
DELETION
3665736677

3665836678
"""
36659-
Non fast forward
36679+
Prevent users with push access from force pushing to branches.
3666036680
"""
3666136681
NON_FAST_FORWARD
3666236682

3666336683
"""
36664-
Pull request
36684+
Require all commits be made to a non-target branch and submitted via a pull request before they can be merged.
3666536685
"""
3666636686
PULL_REQUEST
3666736687

3666836688
"""
36669-
Required deployments
36689+
Choose which environments must be successfully deployed to before branches can
36690+
be merged into a branch that matches this rule.
3667036691
"""
3667136692
REQUIRED_DEPLOYMENTS
3667236693

3667336694
"""
36674-
Required linear history
36695+
Prevent merge commits from being pushed to matching branches.
3667536696
"""
3667636697
REQUIRED_LINEAR_HISTORY
3667736698

3667836699
"""
36679-
Required signatures
36700+
Commits pushed to matching branches must have verified signatures.
3668036701
"""
3668136702
REQUIRED_SIGNATURES
3668236703

3668336704
"""
36684-
Required status checks
36705+
Choose which status checks must pass before branches can be merged into a
36706+
branch that matches this rule. When enabled, commits must first be pushed to
36707+
another branch, then merged or pushed directly to a branch that matches this
36708+
rule after status checks have passed.
3668536709
"""
3668636710
REQUIRED_STATUS_CHECKS
3668736711

@@ -36691,7 +36715,7 @@ enum RepositoryRuleType {
3669136715
TAG_NAME_PATTERN
3669236716

3669336717
"""
36694-
Update
36718+
Only allow users with bypass permission to update matching refs.
3669536719
"""
3669636720
UPDATE
3669736721
}
@@ -36735,6 +36759,11 @@ type RepositoryRuleset implements Node {
3673536759
"""
3673636760
conditions: RepositoryRuleConditions!
3673736761

36762+
"""
36763+
Identifies the date and time when the object was created.
36764+
"""
36765+
createdAt: DateTime!
36766+
3673836767
"""
3673936768
Identifies the primary key from the database.
3674036769
"""
@@ -36790,6 +36819,11 @@ type RepositoryRuleset implements Node {
3679036819
Target of the ruleset.
3679136820
"""
3679236821
target: RepositoryRulesetTarget
36822+
36823+
"""
36824+
Identifies the date and time when the object was last updated.
36825+
"""
36826+
updatedAt: DateTime!
3679336827
}
3679436828

3679536829
"""
@@ -37479,7 +37513,8 @@ interface RequirableByPullRequest {
3747937513
}
3748037514

3748137515
"""
37482-
Parameters to be used for the required_deployments rule
37516+
Choose which environments must be successfully deployed to before branches can
37517+
be merged into a branch that matches this rule.
3748337518
"""
3748437519
type RequiredDeploymentsParameters {
3748537520
"""
@@ -37489,7 +37524,8 @@ type RequiredDeploymentsParameters {
3748937524
}
3749037525

3749137526
"""
37492-
Parameters to be used for the required_deployments rule
37527+
Choose which environments must be successfully deployed to before branches can
37528+
be merged into a branch that matches this rule.
3749337529
"""
3749437530
input RequiredDeploymentsParametersInput {
3749537531
"""
@@ -37531,7 +37567,10 @@ input RequiredStatusCheckInput {
3753137567
}
3753237568

3753337569
"""
37534-
Parameters to be used for the required_status_checks rule
37570+
Choose which status checks must pass before branches can be merged into a branch
37571+
that matches this rule. When enabled, commits must first be pushed to another
37572+
branch, then merged or pushed directly to a branch that matches this rule after
37573+
status checks have passed.
3753537574
"""
3753637575
type RequiredStatusChecksParameters {
3753737576
"""
@@ -37548,7 +37587,10 @@ type RequiredStatusChecksParameters {
3754837587
}
3754937588

3755037589
"""
37551-
Parameters to be used for the required_status_checks rule
37590+
Choose which status checks must pass before branches can be merged into a branch
37591+
that matches this rule. When enabled, commits must first be pushed to another
37592+
branch, then merged or pushed directly to a branch that matches this rule after
37593+
status checks have passed.
3755237594
"""
3755337595
input RequiredStatusChecksParametersInput {
3755437596
"""
@@ -44344,7 +44386,7 @@ type UpdateOrganizationWebCommitSignoffSettingPayload {
4434444386
}
4434544387

4434644388
"""
44347-
Parameters to be used for the update rule
44389+
Only allow users with bypass permission to update matching refs.
4434844390
"""
4434944391
type UpdateParameters {
4435044392
"""
@@ -44354,7 +44396,7 @@ type UpdateParameters {
4435444396
}
4435544397

4435644398
"""
44357-
Parameters to be used for the update rule
44399+
Only allow users with bypass permission to update matching refs.
4435844400
"""
4435944401
input UpdateParametersInput {
4436044402
"""

0 commit comments

Comments
 (0)