feat: amm spread #1044
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: "Add IPRs To Project Board" | |
"on": | |
pull_request: | |
types: | |
- opened | |
env: | |
GH_TOKEN: ${{ secrets.PROJECT_MANAGE_ACTION }} | |
PROJECT_ID: ${{ secrets.PROTOCOL_DESIGN_PROJECT_ID }} | |
PR_ID: ${{ github.event.pull_request.node_id }} | |
USER: ${{ github.actor }} | |
jobs: | |
add_issue: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Add pr to project board" | |
run: | | |
gh api graphql -f query=' | |
mutation($user:String!, $project:ID!, $pr:ID!) { | |
addProjectV2ItemById(input: {clientMutationId: $user, projectId: $project, contentId: $pr}) { | |
item { | |
id | |
} | |
} | |
}' -f project=$PROJECT_ID -f pr=$PR_ID -f user=$USER |