[Snyk] Fix for 1 vulnerabilities #56
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: Benchmark - CLI | |
on: | |
pull_request: | |
branches: | |
- '*' | |
paths: | |
- lib/** | |
issue_comment: | |
types: | |
- created | |
- edited | |
jobs: | |
trigger-benchmark: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Incoming Pull Request | |
if: | | |
github.event_name == 'pull_request' || ( | |
github.event_name == 'issue_comment' && | |
github.event.issue.pull_request && | |
github.event.issue.state == 'open' && | |
startsWith(github.event.comment.body, '@npm-cli-bot benchmark this') | |
) | |
env: | |
# gh cli uses these env vars for owner/repo/token | |
GH_REPO: "npm/benchmarks" | |
GITHUB_TOKEN: ${{ secrets.BENCHMARK_DISPATCH_TOKEN }} | |
run: | | |
EVENT_NAME="${{ github.event_name }}" | |
OWNER="${{ github.event.repository.owner.login }}" | |
REPO="${{ github.event.repository.name }}" | |
PR="" | |
if [[ "$EVENT_NAME" == "pull_request" ]]; then | |
if [[ "$GITHUB_TOKEN" == "" ]]; then | |
echo "No auth - from fork pull request, exiting" | |
exit 0 | |
fi | |
PR="${{ github.event.pull_request.number }}" | |
else | |
PR="${{ github.event.issue.number }}" | |
SENDER="${{ github.event.comment.user.login }}" | |
ROLE=$(gh api repos/${OWNER}/${REPO}/collaborators/${SENDER}/permission -q '.permission') | |
if [[ "$ROLE" != "admin" ]]; then | |
echo "${SENDER} is ${ROLE}, not an admin, exiting" | |
exit 0 | |
fi | |
# add emoji to comment if user is an admin to signal | |
# benchmark is running | |
COMMENT_NODE_ID="${{ github.event.comment.node_id }}" | |
QUERY='mutation ($inputData:AddReactionInput!) { | |
addReaction (input:$inputData) { | |
reaction { content } | |
} | |
}' | |
echo '{ | |
"query": "'${QUERY}'", | |
"variables": { | |
"inputData": { | |
"subjectId": "'"${COMMENT_NODE_ID}"'", | |
"content": "ROCKET" | |
} | |
} | |
}' | gh api graphql --input - | |
fi | |
EVENT="${EVENT_NAME} ${OWNER}/${REPO}#${PR}" | |
echo '{ | |
"event_type": "'"$EVENT"'", | |
"client_payload": { | |
"pr_id": "'"$PR"'", | |
"repo": "'"$REPO"'", | |
"owner": "'"$OWNER"'" | |
} | |
}' | gh api repos/{owner}/{repo}/dispatches --input - |