Skip to content

Vegacapsule does not return latest eth key for node #201

Vegacapsule does not return latest eth key for node

Vegacapsule does not return latest eth key for node #201

---
name: "Add Issues To Project Board"
"on":
issues:
types: [opened]
env:
GH_TOKEN: ${{ secrets.GH_NEW_CARD_TO_PROJECT }}
PROJECT_ID: ${{ secrets.CORE_PROJECT_ID }}
ISSUE_ID: ${{ github.event.issue.node_id }}
USER: ${{ github.actor }}
LABEL_ID: "LA_kwDOGuj2o87kW1sH"
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
- name: "Add repo identify label"
run: |
gh api graphql -f query='
mutation($user:String!, $issue:ID!, $label:[ID!]!) {
addLabelsToLabelable(input: {clientMutationId: $user, labelableId: $issue, labelIds: $label}) {
clientMutationId
}
}' -f label=$LABEL_ID -f issue=$ISSUE_ID -f user=$USER