Skip to content

Commit c8ef778

Browse files
authored
Branch was updated using the 'autoupdate branch' Actions workflow.
2 parents 256ff7f + dee31f0 commit c8ef778

10 files changed

Lines changed: 153 additions & 308 deletions

File tree

.github/commands/projectStatus.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
trigger: project_status
2+
title: Project status
3+
description: Update the team on your project's status.
4+
surfaces:
5+
- issue
6+
steps:
7+
- type: menu
8+
id: project
9+
label: Project name
10+
options:
11+
- Technical Debt
12+
- Add Widget
13+
- Bug Bash
14+
- type: form
15+
style: embedded
16+
body:
17+
- type: dropdown
18+
attributes:
19+
label: Color
20+
description: What's the status of your project?
21+
options:
22+
- label: 🟢 Green
23+
value: 🟢
24+
- label: 🟡 Yellow
25+
value: 🟡
26+
- label: 🔴 Red
27+
value: 🔴
28+
- type: textarea
29+
attributes:
30+
label: Details
31+
description: What should the team know about the status of your project?
32+
placeholder: Recent achievements, blockers, requests for help, etc.
33+
- type: fill
34+
template: "The {{ data.project }} project is status {{ data.Color }}. {{ data.Details }}"

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
"""

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)