Skip to content

Commit 39c6c0d

Browse files
authored
Merge branch 'main' into check-for-outdated-links
2 parents 95e5090 + ac9d219 commit 39c6c0d

11 files changed

Lines changed: 121 additions & 310 deletions

File tree

content/actions/reference/events-that-trigger-workflows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ This event runs in the context of the base of the pull request, rather than in t
596596

597597
{% warning %}
598598

599-
**Warning:** The `pull_request_target` event is granted a read/write repository token and can access secrets, even when it is triggered from a fork. Although the workflow runs in the context of the base of the pull request, you should make sure that you do not check out, build, or run untrusted code from the pull request with this event. Additionally, any caches share the same scope as the base branch, and to help prevent cache poisoning, you should not save the cache if there is a possibility that the cache contents were altered.
599+
**Warning:** The `pull_request_target` event is granted a read/write repository token and can access secrets, even when it is triggered from a fork. Although the workflow runs in the context of the base of the pull request, you should make sure that you do not check out, build, or run untrusted code from the pull request with this event. Additionally, any caches share the same scope as the base branch, and to help prevent cache poisoning, you should not save the cache if there is a possibility that the cache contents were altered. For more information, see "[Keeping your GitHub Actions and workflows secure: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests)" on the GitHub Security Lab website.
600600

601601
{% endwarning %}
602602

data/graphql/ghae/graphql_previews.ghae.yml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -84,20 +84,6 @@
8484
- Mutation.createContentAttachment
8585
owning_teams:
8686
- '@github/feature-lifecycle'
87-
- title: Pinned Issues Preview
88-
description: This preview adds support for pinned issues.
89-
toggled_by: ':elektra-preview'
90-
announcement: null
91-
updates: null
92-
toggled_on:
93-
- Repository.pinnedIssues
94-
- PinnedIssue
95-
- PinnedIssueEdge
96-
- PinnedIssueConnection
97-
- Mutation.pinIssue
98-
- Mutation.unpinIssue
99-
owning_teams:
100-
- '@github/pe-pull-requests'
10187
- title: Labels Preview
10288
description: >-
10389
This preview adds support for adding, updating, creating and deleting

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

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11314,6 +11314,11 @@ type Issue implements Assignable & Closable & Comment & Labelable & Lockable & N
1131411314
"""
1131511315
includesCreatedEdit: Boolean!
1131611316

11317+
"""
11318+
Indicates whether or not this issue is currently pinned to the repository issues list
11319+
"""
11320+
isPinned: Boolean
11321+
1131711322
"""
1131811323
Is this issue read by the viewer
1131911324
"""
@@ -14842,7 +14847,7 @@ type Mutation {
1484214847
Parameters for PinIssue
1484314848
"""
1484414849
input: PinIssueInput!
14845-
): PinIssuePayload @preview(toggledBy: "elektra-preview")
14850+
): PinIssuePayload
1484614851

1484714852
"""
1484814853
Removes assignees from an assignable object.
@@ -15052,7 +15057,7 @@ type Mutation {
1505215057
Parameters for UnpinIssue
1505315058
"""
1505415059
input: UnpinIssueInput!
15055-
): UnpinIssuePayload @preview(toggledBy: "elektra-preview")
15060+
): UnpinIssuePayload
1505615061

1505715062
"""
1505815063
Marks a review thread as unresolved.
@@ -19993,7 +19998,7 @@ type PinnedEvent implements Node {
1999319998
"""
1999419999
A Pinned Issue is a issue pinned to a repository's index page.
1999520000
"""
19996-
type PinnedIssue implements Node @preview(toggledBy: "elektra-preview") {
20001+
type PinnedIssue implements Node {
1999720002
"""
1999820003
Identifies the primary key from the database.
1999920004
"""
@@ -20019,7 +20024,7 @@ type PinnedIssue implements Node @preview(toggledBy: "elektra-preview") {
2001920024
"""
2002020025
The connection type for PinnedIssue.
2002120026
"""
20022-
type PinnedIssueConnection @preview(toggledBy: "elektra-preview") {
20027+
type PinnedIssueConnection {
2002320028
"""
2002420029
A list of edges.
2002520030
"""
@@ -20044,7 +20049,7 @@ type PinnedIssueConnection @preview(toggledBy: "elektra-preview") {
2004420049
"""
2004520050
An edge in a connection.
2004620051
"""
20047-
type PinnedIssueEdge @preview(toggledBy: "elektra-preview") {
20052+
type PinnedIssueEdge {
2004820053
"""
2004920054
A cursor for use in pagination.
2005020055
"""
@@ -28439,7 +28444,7 @@ type Repository implements Node & ProjectOwner & RepositoryInfo & Starrable & Su
2843928444
Returns the last _n_ elements from the list.
2844028445
"""
2844128446
last: Int
28442-
): PinnedIssueConnection @preview(toggledBy: "elektra-preview")
28447+
): PinnedIssueConnection
2844328448

2844428449
"""
2844528450
The primary language of the repository's code.
@@ -37725,6 +37730,11 @@ enum UserStatusOrderField {
3772537730
A domain that can be verified for an organization or an enterprise.
3772637731
"""
3772737732
type VerifiableDomain implements Node {
37733+
"""
37734+
Identifies the date and time when the object was created.
37735+
"""
37736+
createdAt: DateTime!
37737+
3772837738
"""
3772937739
Identifies the primary key from the database.
3773037740
"""
@@ -37776,6 +37786,11 @@ type VerifiableDomain implements Node {
3777637786
"""
3777737787
tokenExpirationTime: DateTime
3777837788

37789+
"""
37790+
Identifies the date and time when the object was last updated.
37791+
"""
37792+
updatedAt: DateTime!
37793+
3777937794
"""
3778037795
The current verification token for the domain.
3778137796
"""

data/graphql/graphql_previews.yml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -100,20 +100,6 @@
100100
- Mutation.createContentAttachment
101101
owning_teams:
102102
- '@github/feature-lifecycle'
103-
- title: Pinned Issues Preview
104-
description: This preview adds support for pinned issues.
105-
toggled_by: ':elektra-preview'
106-
announcement: null
107-
updates: null
108-
toggled_on:
109-
- Repository.pinnedIssues
110-
- PinnedIssue
111-
- PinnedIssueEdge
112-
- PinnedIssueConnection
113-
- Mutation.pinIssue
114-
- Mutation.unpinIssue
115-
owning_teams:
116-
- '@github/pe-pull-requests'
117103
- title: Labels Preview
118104
description: >-
119105
This preview adds support for adding, updating, creating and deleting

data/graphql/schema.docs.graphql

Lines changed: 26 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12055,6 +12055,11 @@ type Issue implements Assignable & Closable & Comment & Labelable & Lockable & N
1205512055
"""
1205612056
includesCreatedEdit: Boolean!
1205712057

12058+
"""
12059+
Indicates whether or not this issue is currently pinned to the repository issues list
12060+
"""
12061+
isPinned: Boolean
12062+
1205812063
"""
1205912064
Is this issue read by the viewer
1206012065
"""
@@ -16057,7 +16062,7 @@ type Mutation {
1605716062
Parameters for PinIssue
1605816063
"""
1605916064
input: PinIssueInput!
16060-
): PinIssuePayload @preview(toggledBy: "elektra-preview")
16065+
): PinIssuePayload
1606116066

1606216067
"""
1606316068
Regenerates the identity provider recovery codes for an enterprise
@@ -16357,7 +16362,7 @@ type Mutation {
1635716362
Parameters for UnpinIssue
1635816363
"""
1635916364
input: UnpinIssueInput!
16360-
): UnpinIssuePayload @preview(toggledBy: "elektra-preview")
16365+
): UnpinIssuePayload
1636116366

1636216367
"""
1636316368
Marks a review thread as unresolved.
@@ -21992,7 +21997,7 @@ type PinnedEvent implements Node {
2199221997
"""
2199321998
A Pinned Issue is a issue pinned to a repository's index page.
2199421999
"""
21995-
type PinnedIssue implements Node @preview(toggledBy: "elektra-preview") {
22000+
type PinnedIssue implements Node {
2199622001
"""
2199722002
Identifies the primary key from the database.
2199822003
"""
@@ -22018,7 +22023,7 @@ type PinnedIssue implements Node @preview(toggledBy: "elektra-preview") {
2201822023
"""
2201922024
The connection type for PinnedIssue.
2202022025
"""
22021-
type PinnedIssueConnection @preview(toggledBy: "elektra-preview") {
22026+
type PinnedIssueConnection {
2202222027
"""
2202322028
A list of edges.
2202422029
"""
@@ -22043,7 +22048,7 @@ type PinnedIssueConnection @preview(toggledBy: "elektra-preview") {
2204322048
"""
2204422049
An edge in a connection.
2204522050
"""
22046-
type PinnedIssueEdge @preview(toggledBy: "elektra-preview") {
22051+
type PinnedIssueEdge {
2204722052
"""
2204822053
A cursor for use in pagination.
2204922054
"""
@@ -30883,7 +30888,7 @@ type Repository implements Node & PackageOwner & ProjectOwner & RepositoryInfo &
3088330888
Returns the last _n_ elements from the list.
3088430889
"""
3088530890
last: Int
30886-
): PinnedIssueConnection @preview(toggledBy: "elektra-preview")
30891+
): PinnedIssueConnection
3088730892

3088830893
"""
3088930894
The primary language of the repository's code.
@@ -41118,6 +41123,11 @@ enum UserStatusOrderField {
4111841123
A domain that can be verified for an organization or an enterprise.
4111941124
"""
4112041125
type VerifiableDomain implements Node {
41126+
"""
41127+
Identifies the date and time when the object was created.
41128+
"""
41129+
createdAt: DateTime!
41130+
4112141131
"""
4112241132
Identifies the primary key from the database.
4112341133
"""
@@ -41169,6 +41179,11 @@ type VerifiableDomain implements Node {
4116941179
"""
4117041180
tokenExpirationTime: DateTime
4117141181

41182+
"""
41183+
Identifies the date and time when the object was last updated.
41184+
"""
41185+
updatedAt: DateTime!
41186+
4117241187
"""
4117341188
The current verification token for the domain.
4117441189
"""
@@ -41234,6 +41249,11 @@ input VerifiableDomainOrder {
4123441249
Properties by which verifiable domain connections can be ordered.
4123541250
"""
4123641251
enum VerifiableDomainOrderField {
41252+
"""
41253+
Order verifiable domains by their creation date.
41254+
"""
41255+
CREATED_AT
41256+
4123741257
"""
4123841258
Order verifiable domains by the domain name.
4123941259
"""

data/reusables/webhooks/check_run_properties.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ Key | Type | Description
77
`check_run[name]`|`string` | The name of the check run.
88
`check_run[check_suite][id]`|`integer` | The id of the check suite that this check run is part of.
99
`check_run[check_suite][pull_requests]`|`array`| An array of pull requests that match this check suite. A pull request matches a check suite if they have the same `head_sha` and `head_branch`. When the check suite's `head_branch` is in a forked repository it will be `null` and the `pull_requests` array will be empty.{% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" or currentVersion == "github-ae@latest" %}
10-
`deployment`|`object`| A deployment to a repository environment. This will only be populated if the check run was created by a {% data variables.product.prodname_actions %} workflow job that references an environment.{% endif %}
10+
`check_run[check_suite][deployment]`|`object`| A deployment to a repository environment. This will only be populated if the check run was created by a {% data variables.product.prodname_actions %} workflow job that references an environment.{% endif %}
1111
`requested_action`|`object` | The action requested by the user.
1212
`requested_action[identifier]`|`string` | The integrator reference of the action requested by the user.

lib/graphql/static/changelog.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
11
[
2+
{
3+
"schemaChanges": [
4+
{
5+
"title": "The GraphQL schema includes these changes:",
6+
"changes": [
7+
"Field `isPinned` was added to object type `Issue`",
8+
"Enum value 'CREATED_AT` was added to enum `VerifiableDomainOrderField'",
9+
"Field `createdAt` was added to object type `VerifiableDomain`",
10+
"Field `updatedAt` was added to object type `VerifiableDomain`"
11+
]
12+
}
13+
],
14+
"previewChanges": [],
15+
"upcomingChanges": [],
16+
"date": "2021-03-03"
17+
},
218
{
319
"schemaChanges": [
420
{

lib/graphql/static/prerendered-objects.json

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

lib/graphql/static/previews.json

Lines changed: 0 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -114,24 +114,6 @@
114114
"accept_header": "application/vnd.github.corsair-preview+json",
115115
"href": "/graphql/overview/schema-previews#create-content-attachments-preview"
116116
},
117-
{
118-
"title": "Pinned issues preview",
119-
"description": "This preview adds support for pinned issues.",
120-
"toggled_by": "elektra-preview",
121-
"toggled_on": [
122-
"Repository.pinnedIssues",
123-
"PinnedIssue",
124-
"PinnedIssueEdge",
125-
"PinnedIssueConnection",
126-
"Mutation.pinIssue",
127-
"Mutation.unpinIssue"
128-
],
129-
"owning_teams": [
130-
"@github/pe-pull-requests"
131-
],
132-
"accept_header": "application/vnd.github.elektra-preview+json",
133-
"href": "/graphql/overview/schema-previews#pinned-issues-preview"
134-
},
135117
{
136118
"title": "Labels preview",
137119
"description": "This preview adds support for adding, updating, creating and deleting labels.",
@@ -1181,24 +1163,6 @@
11811163
"accept_header": "application/vnd.github.corsair-preview+json",
11821164
"href": "/graphql/overview/schema-previews#create-content-attachments-preview"
11831165
},
1184-
{
1185-
"title": "Pinned issues preview",
1186-
"description": "This preview adds support for pinned issues.",
1187-
"toggled_by": "elektra-preview",
1188-
"toggled_on": [
1189-
"Repository.pinnedIssues",
1190-
"PinnedIssue",
1191-
"PinnedIssueEdge",
1192-
"PinnedIssueConnection",
1193-
"Mutation.pinIssue",
1194-
"Mutation.unpinIssue"
1195-
],
1196-
"owning_teams": [
1197-
"@github/pe-pull-requests"
1198-
],
1199-
"accept_header": "application/vnd.github.elektra-preview+json",
1200-
"href": "/graphql/overview/schema-previews#pinned-issues-preview"
1201-
},
12021166
{
12031167
"title": "Labels preview",
12041168
"description": "This preview adds support for adding, updating, creating and deleting labels.",

0 commit comments

Comments
 (0)