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 @@ -50,27 +50,29 @@ This content is displayed on the {% data variables.product.prodname_docs %} site

## Callout tags

Callouts highlight important information that users need to know. We use standard formatting and colors for different types of callouts: notes, warnings, and danger notices. Use Liquid tags before and after the text you’d like included in the callout box.
Callouts highlight important information that users need to know. We use standard formatting and colors for four different types of callouts: notes, tips, warnings, and danger notices.

For information on when to use callout tags, see "[AUTOTITLE](/contributing/style-guide-and-content-model/style-guide#callouts)."
For information on when to use callouts, and how to format them in Markdown, see "[AUTOTITLE](/contributing/style-guide-and-content-model/style-guide#callouts)."

### Example usage of a callout
### Examples of callouts

```markdown
{% raw %}{% note %}

**Note:** Owners and administrators can add outside collaborators to a repository.

{% endnote %}{% endraw %}
> [!NOTE] Keep this in mind.
```

### Example callout rendered on {% data variables.product.prodname_docs %}

{% note %}
```markdown
> [!NOTE]
> Generally callouts should be short.
>
> But occasionally may require more than one paragraph
```

**Note:** Owners and administrators can add outside collaborators to a repository.
### Example callouts rendered on {% data variables.product.prodname_docs %}

{% endnote %}
> [!NOTE]
> Generally callouts should be short.
>
> But occasionally may require more than one paragraph

## Code sample syntax highlighting

Expand Down
28 changes: 0 additions & 28 deletions data/graphql/ghec/graphql_previews.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,3 @@
- title: Access to package version deletion
description: >-
This preview adds support for the DeletePackageVersion mutation which
enables deletion of private package versions.
toggled_by: ':package-deletes-preview'
announcement: null
updates: null
toggled_on:
- Mutation.deletePackageVersion
owning_teams:
- '@github/pe-package-registry'
- title: Deployments
description: >-
This preview adds support for deployments mutations and new deployments
Expand Down Expand Up @@ -118,20 +107,3 @@
- Mutation.importProject
owning_teams:
- '@github/pe-issues-projects'
- title: Team Review Assignments Preview
description: >-
This preview adds support for updating the settings for team review
assignment.
toggled_by: ':stone-crop-preview'
announcement: null
updates: null
toggled_on:
- Mutation.updateTeamReviewAssignment
- UpdateTeamReviewAssignmentInput
- TeamReviewAssignmentAlgorithm
- Team.reviewRequestDelegationEnabled
- Team.reviewRequestDelegationAlgorithm
- Team.reviewRequestDelegationMemberCount
- Team.reviewRequestDelegationNotifyTeam
owning_teams:
- '@github/pe-pull-requests'
16 changes: 8 additions & 8 deletions data/graphql/ghec/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -22870,7 +22870,7 @@ type Mutation {
Parameters for DeletePackageVersion
"""
input: DeletePackageVersionInput!
): DeletePackageVersionPayload @preview(toggledBy: "package-deletes-preview")
): DeletePackageVersionPayload

"""
Deletes a project.
Expand Down Expand Up @@ -24361,7 +24361,7 @@ type Mutation {
Parameters for UpdateTeamReviewAssignment
"""
input: UpdateTeamReviewAssignmentInput!
): UpdateTeamReviewAssignmentPayload @preview(toggledBy: "stone-crop-preview")
): UpdateTeamReviewAssignmentPayload

"""
Update team repository.
Expand Down Expand Up @@ -53509,22 +53509,22 @@ type Team implements MemberStatusable & Node & Subscribable {
"""
What algorithm is used for review assignment for this team
"""
reviewRequestDelegationAlgorithm: TeamReviewAssignmentAlgorithm @preview(toggledBy: "stone-crop-preview")
reviewRequestDelegationAlgorithm: TeamReviewAssignmentAlgorithm

"""
True if review assignment is enabled for this team
"""
reviewRequestDelegationEnabled: Boolean! @preview(toggledBy: "stone-crop-preview")
reviewRequestDelegationEnabled: Boolean!

"""
How many team members are required for review assignment for this team
"""
reviewRequestDelegationMemberCount: Int @preview(toggledBy: "stone-crop-preview")
reviewRequestDelegationMemberCount: Int

"""
When assigning team members via delegation, whether the entire team should be notified as well.
"""
reviewRequestDelegationNotifyTeam: Boolean! @preview(toggledBy: "stone-crop-preview")
reviewRequestDelegationNotifyTeam: Boolean!

"""
The slug corresponding to the team.
Expand Down Expand Up @@ -55219,7 +55219,7 @@ enum TeamRepositoryOrderField {
"""
The possible team review assignment algorithms
"""
enum TeamReviewAssignmentAlgorithm @preview(toggledBy: "stone-crop-preview") {
enum TeamReviewAssignmentAlgorithm {
"""
Balance review load across the entire team
"""
Expand Down Expand Up @@ -59149,7 +59149,7 @@ type UpdateTeamDiscussionPayload {
"""
Autogenerated input type of UpdateTeamReviewAssignment
"""
input UpdateTeamReviewAssignmentInput @preview(toggledBy: "stone-crop-preview") {
input UpdateTeamReviewAssignmentInput {
"""
The algorithm to use for review assignment
"""
Expand Down
28 changes: 0 additions & 28 deletions data/graphql/graphql_previews.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,3 @@
- title: Access to package version deletion
description: >-
This preview adds support for the DeletePackageVersion mutation which
enables deletion of private package versions.
toggled_by: ':package-deletes-preview'
announcement: null
updates: null
toggled_on:
- Mutation.deletePackageVersion
owning_teams:
- '@github/pe-package-registry'
- title: Deployments
description: >-
This preview adds support for deployments mutations and new deployments
Expand Down Expand Up @@ -118,20 +107,3 @@
- Mutation.importProject
owning_teams:
- '@github/pe-issues-projects'
- title: Team Review Assignments Preview
description: >-
This preview adds support for updating the settings for team review
assignment.
toggled_by: ':stone-crop-preview'
announcement: null
updates: null
toggled_on:
- Mutation.updateTeamReviewAssignment
- UpdateTeamReviewAssignmentInput
- TeamReviewAssignmentAlgorithm
- Team.reviewRequestDelegationEnabled
- Team.reviewRequestDelegationAlgorithm
- Team.reviewRequestDelegationMemberCount
- Team.reviewRequestDelegationNotifyTeam
owning_teams:
- '@github/pe-pull-requests'
16 changes: 8 additions & 8 deletions data/graphql/schema.docs.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -22870,7 +22870,7 @@ type Mutation {
Parameters for DeletePackageVersion
"""
input: DeletePackageVersionInput!
): DeletePackageVersionPayload @preview(toggledBy: "package-deletes-preview")
): DeletePackageVersionPayload

"""
Deletes a project.
Expand Down Expand Up @@ -24361,7 +24361,7 @@ type Mutation {
Parameters for UpdateTeamReviewAssignment
"""
input: UpdateTeamReviewAssignmentInput!
): UpdateTeamReviewAssignmentPayload @preview(toggledBy: "stone-crop-preview")
): UpdateTeamReviewAssignmentPayload

"""
Update team repository.
Expand Down Expand Up @@ -53509,22 +53509,22 @@ type Team implements MemberStatusable & Node & Subscribable {
"""
What algorithm is used for review assignment for this team
"""
reviewRequestDelegationAlgorithm: TeamReviewAssignmentAlgorithm @preview(toggledBy: "stone-crop-preview")
reviewRequestDelegationAlgorithm: TeamReviewAssignmentAlgorithm

"""
True if review assignment is enabled for this team
"""
reviewRequestDelegationEnabled: Boolean! @preview(toggledBy: "stone-crop-preview")
reviewRequestDelegationEnabled: Boolean!

"""
How many team members are required for review assignment for this team
"""
reviewRequestDelegationMemberCount: Int @preview(toggledBy: "stone-crop-preview")
reviewRequestDelegationMemberCount: Int

"""
When assigning team members via delegation, whether the entire team should be notified as well.
"""
reviewRequestDelegationNotifyTeam: Boolean! @preview(toggledBy: "stone-crop-preview")
reviewRequestDelegationNotifyTeam: Boolean!

"""
The slug corresponding to the team.
Expand Down Expand Up @@ -55219,7 +55219,7 @@ enum TeamRepositoryOrderField {
"""
The possible team review assignment algorithms
"""
enum TeamReviewAssignmentAlgorithm @preview(toggledBy: "stone-crop-preview") {
enum TeamReviewAssignmentAlgorithm {
"""
Balance review load across the entire team
"""
Expand Down Expand Up @@ -59149,7 +59149,7 @@ type UpdateTeamDiscussionPayload {
"""
Autogenerated input type of UpdateTeamReviewAssignment
"""
input UpdateTeamReviewAssignmentInput @preview(toggledBy: "stone-crop-preview") {
input UpdateTeamReviewAssignmentInput {
"""
The algorithm to use for review assignment
"""
Expand Down
2 changes: 1 addition & 1 deletion data/reusables/contributing/content-linter-rules.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
| [MD049](https://github.com/DavidAnson/markdownlint/blob/v0.28.2/doc/md049.md) | emphasis-style | Emphasis style should be consistent | error | emphasis |
| [MD050](https://github.com/DavidAnson/markdownlint/blob/v0.28.2/doc/md050.md) | strong-style | Strong style should be consistent | error | emphasis |
| [search-replace](https://github.com/OnkarRuikar/markdownlint-rule-search-replace) | todocs-placeholder | Catch occurrences of TODOCS placeholder. | error | |
| [search-replace](https://github.com/OnkarRuikar/markdownlint-rule-search-replace) | docs-domain | Catch occurrences of docs.gitub.com domain. | error | |
| [search-replace](https://github.com/OnkarRuikar/markdownlint-rule-search-replace) | docs-domain | Catch occurrences of docs.github.com domain. | error | |
| [search-replace](https://github.com/OnkarRuikar/markdownlint-rule-search-replace) | help-domain | Catch occurrences of help.github.com domain. | error | |
| [search-replace](https://github.com/OnkarRuikar/markdownlint-rule-search-replace) | preview-domain | Catch occurrences of preview.ghdocs.com domain. | error | |
| [search-replace](https://github.com/OnkarRuikar/markdownlint-rule-search-replace) | developer-domain | Catch occurrences of developer.github.com domain. | error | |
Expand Down
Loading