Skip to content

Commit

Permalink
Add issue automation for triage (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
kittykat authored Sep 2, 2022
1 parent 9ff021f commit 4d3049d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/triage_incoming.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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 }}

0 comments on commit 4d3049d

Please sign in to comment.