element-call/.github/workflows/triage-incoming.yaml

28 lines
772 B
YAML
Raw Normal View History

2022-10-31 20:47:36 +00:00
name: Move new issues into triage board
on:
issues:
types: [opened]
2022-10-31 20:47:36 +00:00
jobs:
add-to-project:
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
2022-10-31 20:47:36 +00:00
}
}
}
2022-10-31 20:47:36 +00:00
projectid: ${{ env.PROJECT_ID }}
contentid: ${{ github.event.issue.node_id }}
env:
PROJECT_ID: "PVT_kwDOAM0swc4AH1sa"
2022-10-31 20:47:36 +00:00
GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}