Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ If you authored any commit(s) present in the commit history for the listed tag o
| [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) |
| [pyserial/pyserial](https://github.com/pyserial/pyserial) | 3.5 | [v3.5](https://github.com/pyserial/pyserial/releases/tag/v3.5) |
| [dateutil/dateutil](https://github.com/dateutil/dateutil) | 2.8.1 | [2.8.1](https://github.com/dateutil/dateutil/releases/tag/2.8.1) |
| [yaml/pyyaml ](https://github.com/yaml/pyyaml) | 5.4.1 | [5.4.1](https://github.com/yaml/pyyaml/releases/tag/5.4.1) |
| [yaml/pyyaml](https://github.com/yaml/pyyaml) | 5.4.1 | [5.4.1](https://github.com/yaml/pyyaml/releases/tag/5.4.1) |
| [psf/requests](https://github.com/psf/requests) | 2.25.1 | [v2.25.1](https://github.com/psf/requests/releases/tag/v2.25.1) |
| [boto/s3transfer](https://github.com/boto/s3transfer) | 0.3.4 | [0.3.4](https://github.com/boto/s3transfer/releases/tag/0.3.4) |
| [enthought/scimath](https://github.com/enthought/scimath) | 4.2.0 | [4.2.0](https://github.com/enthought/scimath/releases/tag/4.2.0) |
Expand Down
2 changes: 1 addition & 1 deletion content/admin/overview/about-upgrades-to-new-releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ To upgrade your enterprise to a new release, see "[AUTOTITLE](/enterprise-server
## Further reading

- [ {% data variables.product.prodname_roadmap %} ]( {% data variables.product.prodname_roadmap_link %} ) in the `github/roadmap` repository{% ifversion ghae %}
- [ {% data variables.product.prodname_ghe_managed %} release notes](/admin/release-notes)
- [{% data variables.product.prodname_ghe_managed %} release notes](/admin/release-notes)
{% endif %}
2 changes: 1 addition & 1 deletion content/education/guides.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ shortTitle: Guides
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.

- [Sign up for a new {% data variables.product.prodname_dotcom %} account](/get-started/signing-up-for-github/signing-up-for-a-new-github-account)
- [Git and {% data variables.product.prodname_dotcom %} quickstart ](/get-started/quickstart)
- [Git and {% data variables.product.prodname_dotcom %} quickstart](/get-started/quickstart)
- [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)
- [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)
- [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)
Expand Down
76 changes: 59 additions & 17 deletions data/graphql/ghae/schema.docs-ghae.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -24130,6 +24130,16 @@ type Organization implements Actor & AnnouncementBanner & MemberStatusable & Nod
"""
resourcePath: URI!

"""
Returns a single ruleset from the current organization by ID.
"""
ruleset(
"""
The ID of the ruleset to be returned.
"""
databaseId: Int!
): RepositoryRuleset

"""
A list of rulesets for this organization.
"""
Expand Down Expand Up @@ -27954,7 +27964,7 @@ enum PullRequestOrderField {
}

"""
Parameters to be used for the pull_request rule
Require all commits be made to a non-target branch and submitted via a pull request before they can be merged.
"""
type PullRequestParameters {
"""
Expand Down Expand Up @@ -27984,7 +27994,7 @@ type PullRequestParameters {
}

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

"""
Returns a single ruleset from the current repository by ID.
"""
ruleset(
"""
The ID of the ruleset to be returned.
"""
databaseId: Int!
): RepositoryRuleset

"""
A list of rulesets for this repository.
"""
Expand Down Expand Up @@ -36646,42 +36666,46 @@ enum RepositoryRuleType {
COMMIT_MESSAGE_PATTERN

"""
Creation
Only allow users with bypass permission to create matching refs.
"""
CREATION

"""
Deletion
Only allow users with bypass permissions to delete matching refs.
"""
DELETION

"""
Non fast forward
Prevent users with push access from force pushing to branches.
"""
NON_FAST_FORWARD

"""
Pull request
Require all commits be made to a non-target branch and submitted via a pull request before they can be merged.
"""
PULL_REQUEST

"""
Required deployments
Choose which environments must be successfully deployed to before branches can
be merged into a branch that matches this rule.
"""
REQUIRED_DEPLOYMENTS

"""
Required linear history
Prevent merge commits from being pushed to matching branches.
"""
REQUIRED_LINEAR_HISTORY

"""
Required signatures
Commits pushed to matching branches must have verified signatures.
"""
REQUIRED_SIGNATURES

"""
Required status checks
Choose which status checks must pass before branches can be merged into a
branch that matches this rule. When enabled, commits must first be pushed to
another branch, then merged or pushed directly to a branch that matches this
rule after status checks have passed.
"""
REQUIRED_STATUS_CHECKS

Expand All @@ -36691,7 +36715,7 @@ enum RepositoryRuleType {
TAG_NAME_PATTERN

"""
Update
Only allow users with bypass permission to update matching refs.
"""
UPDATE
}
Expand Down Expand Up @@ -36735,6 +36759,11 @@ type RepositoryRuleset implements Node {
"""
conditions: RepositoryRuleConditions!

"""
Identifies the date and time when the object was created.
"""
createdAt: DateTime!

"""
Identifies the primary key from the database.
"""
Expand Down Expand Up @@ -36790,6 +36819,11 @@ type RepositoryRuleset implements Node {
Target of the ruleset.
"""
target: RepositoryRulesetTarget

"""
Identifies the date and time when the object was last updated.
"""
updatedAt: DateTime!
}

"""
Expand Down Expand Up @@ -37479,7 +37513,8 @@ interface RequirableByPullRequest {
}

"""
Parameters to be used for the required_deployments rule
Choose which environments must be successfully deployed to before branches can
be merged into a branch that matches this rule.
"""
type RequiredDeploymentsParameters {
"""
Expand All @@ -37489,7 +37524,8 @@ type RequiredDeploymentsParameters {
}

"""
Parameters to be used for the required_deployments rule
Choose which environments must be successfully deployed to before branches can
be merged into a branch that matches this rule.
"""
input RequiredDeploymentsParametersInput {
"""
Expand Down Expand Up @@ -37531,7 +37567,10 @@ input RequiredStatusCheckInput {
}

"""
Parameters to be used for the required_status_checks rule
Choose which status checks must pass before branches can be merged into a branch
that matches this rule. When enabled, commits must first be pushed to another
branch, then merged or pushed directly to a branch that matches this rule after
status checks have passed.
"""
type RequiredStatusChecksParameters {
"""
Expand All @@ -37548,7 +37587,10 @@ type RequiredStatusChecksParameters {
}

"""
Parameters to be used for the required_status_checks rule
Choose which status checks must pass before branches can be merged into a branch
that matches this rule. When enabled, commits must first be pushed to another
branch, then merged or pushed directly to a branch that matches this rule after
status checks have passed.
"""
input RequiredStatusChecksParametersInput {
"""
Expand Down Expand Up @@ -44344,7 +44386,7 @@ type UpdateOrganizationWebCommitSignoffSettingPayload {
}

"""
Parameters to be used for the update rule
Only allow users with bypass permission to update matching refs.
"""
type UpdateParameters {
"""
Expand All @@ -44354,7 +44396,7 @@ type UpdateParameters {
}

"""
Parameters to be used for the update rule
Only allow users with bypass permission to update matching refs.
"""
input UpdateParametersInput {
"""
Expand Down
Loading