File tree Expand file tree Collapse file tree 2 files changed +25
-2
lines changed Expand file tree Collapse file tree 2 files changed +25
-2
lines changed Original file line number Diff line number Diff line change @@ -108,3 +108,26 @@ jobs:
108
108
env :
109
109
PROJECT_ID : " PN_kwDOAM0swc2KCw"
110
110
GITHUB_TOKEN : ${{ secrets.ELEMENT_BOT_TOKEN }}
111
+
112
+ move_threads_issues :
113
+ name : Move A-Threads to Thread board
114
+ runs-on : ubuntu-latest
115
+ if : >
116
+ contains(github.event.issue.labels.*.name, 'A-Threads')
117
+ steps :
118
+
119
+ with :
120
+ headers : ' {"GraphQL-Features": "projects_next_graphql"}'
121
+ query : |
122
+ mutation add_to_project($projectid:String!,$contentid:String!) {
123
+ addProjectNextItem(input:{projectId:$projectid contentId:$contentid}) {
124
+ projectNextItem {
125
+ id
126
+ }
127
+ }
128
+ }
129
+ projectid : ${{ env.PROJECT_ID }}
130
+ contentid : ${{ github.event.issue.node_id }}
131
+ env :
132
+ PROJECT_ID : " PN_kwDOAM0swc0rRA"
133
+ GITHUB_TOKEN : ${{ secrets.ELEMENT_BOT_TOKEN }}
Original file line number Diff line number Diff line change 5
5
types : [labeled, unlabeled]
6
6
7
7
jobs :
8
- Move_high_priority_issues_to_team_workboard :
8
+ p1_issues_to_team_workboard :
9
9
runs-on : ubuntu-latest
10
10
if : >
11
11
(!contains(github.event.issue.labels.*.name, 'A-E2EE') &&
31
31
column : P1
32
32
repo-token : ${{ secrets.ELEMENT_BOT_TOKEN }}
33
33
34
- Move_high_priority_issues_to_crypto_team_workboard :
34
+ P1_issues_to_crypto_team_workboard :
35
35
runs-on : ubuntu-latest
36
36
if : >
37
37
(contains(github.event.issue.labels.*.name, 'A-E2EE') ||
You can’t perform that action at this time.
0 commit comments