summary refs log tree commit diff
path: root/.github/workflows/triage-incoming.yml
blob: f926bcb75959e5f3d1a318ecb89ec22c7d1aa9f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: Move new issues into the issue triage board

on:
  issues:
    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 }}