You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"title": "This Issue has a generalizable GitHub Pages Link",
189
189
}
190
190
`;
191
191
192
192
exports[`create-an-issue creates a new issue with the context.repo template variables 2`] =`
193
-
Array [
194
-
Array [
193
+
[
194
+
[
195
195
"Created issue This Issue has a generalizable GitHub Pages Link#1: www",
196
196
],
197
197
]
198
198
`;
199
199
200
200
exports[`create-an-issue finds, but does not update an existing issue with the same title 1`] =`
201
-
Object {
202
-
"assignees": Array[
201
+
{
202
+
"assignees": [
203
203
"octocat",
204
204
"JasonEtco",
205
205
],
206
206
"body": "Goodbye!",
207
-
"labels": Array[],
207
+
"labels": [],
208
208
"milestone": 1,
209
209
"title": "Hello!",
210
210
}
211
211
`;
212
212
213
213
exports[`create-an-issue logs a helpful error if creating an issue throws an error 1`] =`
214
-
Array [
215
-
Array [
214
+
[
215
+
[
216
216
"An error occurred while creating the issue. This might be caused by a malformed issue title, or a typo in the labels or assignees. Check .github/ISSUE_TEMPLATE.md!",
217
217
],
218
-
Array [
218
+
[
219
219
[HttpError: Validation error],
220
220
],
221
221
]
222
222
`;
223
223
224
224
exports[`create-an-issue logs a helpful error if creating an issue throws an error with more errors 1`] =`
225
-
Array [
226
-
Array [
225
+
[
226
+
[
227
227
"An error occurred while creating the issue. This might be caused by a malformed issue title, or a typo in the labels or assignees. Check .github/ISSUE_TEMPLATE.md!",
228
228
],
229
-
Array [
229
+
[
230
230
[HttpError: Validation error: {"foo":true}],
231
231
],
232
-
Array [
233
-
Array [
234
-
Object {
232
+
[
233
+
[
234
+
{
235
235
"foo": true,
236
236
},
237
237
],
@@ -240,16 +240,16 @@ Array [
240
240
`;
241
241
242
242
exports[`create-an-issue logs a helpful error if updating an issue throws an error with more errors 1`] =`
243
-
Array [
244
-
Array [
243
+
[
244
+
[
245
245
"An error occurred while updating the issue. This might be caused by a malformed issue title, or a typo in the labels or assignees. Check .github/ISSUE_TEMPLATE.md!",
246
246
],
247
-
Array [
247
+
[
248
248
[HttpError: Validation error: {"foo":true}],
249
249
],
250
-
Array [
251
-
Array [
252
-
Object {
250
+
[
251
+
[
252
+
{
253
253
"foo": true,
254
254
},
255
255
],
@@ -258,13 +258,13 @@ Array [
258
258
`;
259
259
260
260
exports[`create-an-issue updates an existing open issue with the same title 1`] =`
0 commit comments