File tree Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -311,7 +311,7 @@ jobs:
311
311
name : Add labelled issues to PS features team 3
312
312
runs-on : ubuntu-latest
313
313
if : >
314
- contains(github.event.issue.labels.*.name, 'A-Composer-WYSIWYG ')
314
+ contains(github.event.issue.labels.*.name, 'A-Rich-Text-Editor ')
315
315
steps :
316
316
- uses : octokit/graphql-action@v2.x
317
317
id : add_to_project
@@ -330,3 +330,27 @@ jobs:
330
330
env :
331
331
PROJECT_ID : " PVT_kwDOAM0swc4AHJKW"
332
332
GITHUB_TOKEN : ${{ secrets.ELEMENT_BOT_TOKEN }}
333
+
334
+ voip :
335
+ name : Add labelled issues to VoIP project board
336
+ runs-on : ubuntu-latest
337
+ if : >
338
+ contains(github.event.issue.labels.*.name, 'Team: VoIP')
339
+ steps :
340
+ - uses : octokit/graphql-action@v2.x
341
+ id : add_to_project
342
+ with :
343
+ headers : ' {"GraphQL-Features": "projects_next_graphql"}'
344
+ query : |
345
+ mutation add_to_project($projectid:ID!,$contentid:ID!) {
346
+ addProjectV2ItemById(input: {projectId: $projectid contentId: $contentid}) {
347
+ item {
348
+ id
349
+ }
350
+ }
351
+ }
352
+ projectid : ${{ env.PROJECT_ID }}
353
+ contentid : ${{ github.event.issue.node_id }}
354
+ env :
355
+ PROJECT_ID : " PVT_kwDOAM0swc4ABMIk"
356
+ GITHUB_TOKEN : ${{ secrets.ELEMENT_BOT_TOKEN }}
You can’t perform that action at this time.
0 commit comments