Skip to content

As part of vAMM, remove the part of the margin calculation where we estimate slippage from order book... #392

As part of vAMM, remove the part of the margin calculation where we estimate slippage from order book...

As part of vAMM, remove the part of the margin calculation where we estimate slippage from order book... #392

---
name: "Add Issues To Project Board"
"on":
issues:
types:
- opened
env:
GH_TOKEN: ${{ secrets.PROJECT_MANAGE_ACTION }}
PROJECT_ID: ${{ secrets.PROTOCOL_DESIGN_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