summary refs log tree commit diff
path: root/.github
diff options
context:
space:
mode:
authorWill Hunt <will@half-shot.uk>2022-10-19 11:41:25 +0100
committerGitHub <noreply@github.com>2022-10-19 11:41:25 +0100
commit04d7f56f53d7d5530ce7470bc51fcf0b43facf85 (patch)
tree04b14851240ecc836a03594f05f1e4cda3df5233 /.github
parentFix MSC3030 `/timestamp_to_event` returning `outliers` that it has no idea wh... (diff)
downloadsynapse-04d7f56f53d7d5530ce7470bc51fcf0b43facf85.tar.xz
Use backend-meta edition of issue triage workflow (#14230)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/triage-incoming.yml29
1 files changed, 8 insertions, 21 deletions
diff --git a/.github/workflows/triage-incoming.yml b/.github/workflows/triage-incoming.yml
index f926bcb759..0f0397cf5b 100644
--- a/.github/workflows/triage-incoming.yml
+++ b/.github/workflows/triage-incoming.yml
@@ -5,24 +5,11 @@ on:
     types: [ opened ]
 
 jobs:
-  add_new_issues:
-    name: Add new issues to the triage board
-    runs-on: ubuntu-latest
-    steps:
-      - uses: octokit/graphql-action@v2.x
-        id: add_to_project
-        with:
-          headers: '{"GraphQL-Features": "projects_next_graphql"}'
-          query: |
-              mutation add_to_project($projectid:ID!,$contentid:ID!) {
-                addProjectV2ItemById(input: {projectId: $projectid contentId: $contentid}) {
-                item {
-                  id
-                  }
-                }
-              }
-          projectid: ${{ env.PROJECT_ID }}
-          contentid: ${{ github.event.issue.node_id }}
-        env:
-          PROJECT_ID: "PVT_kwDOAIB0Bs4AFDdZ"
-          GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}
+  triage:
+    uses: matrix-org/backend-meta/.github/workflows/triage-incoming.yml@v1
+    with: 
+      project_id: 'PVT_kwDOAIB0Bs4AFDdZ'
+      content_id: ${{ github.event.issue.node_id }}
+    secrets: 
+      github_access_token: ${{ secrets.ELEMENT_BOT_TOKEN }}
+