Skip to content

Update order spec to indicate that stop orders are not accepted during the opening auction. #395

Update order spec to indicate that stop orders are not accepted during the opening auction.

Update order spec to indicate that stop orders are not accepted during the opening auction. #395

---
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