[Bug]: Accounts not saved in the databased during protocol upgrade for existing assets #2442
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 Issues To Project Board" | |
"on": | |
issues: | |
types: [opened] | |
env: | |
GH_TOKEN: ${{ secrets.PROJECT_MANAGE_ACTION }} | |
PROJECT_ID: ${{ secrets.CORE_PROJECT_ID }} | |
ISSUE_ID: ${{ github.event.issue.node_id }} | |
USER: ${{ github.actor }} | |
jobs: | |
add_issue: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Add issue to project board" | |
run: | | |
gh api graphql -f query=' | |
mutation($user:String!, $project:ID!, $issue:ID!) { | |
addProjectV2ItemById(input: {clientMutationId: $user, projectId: $project, contentId: $issue}) { | |
item { | |
id | |
} | |
} | |
}' -f project=$PROJECT_ID -f issue=$ISSUE_ID -f user=$USER |