We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c24e0b1 commit f8dbb48Copy full SHA for f8dbb48
1 file changed
.github/workflows/deploy.yml
@@ -46,6 +46,16 @@ jobs:
46
https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/assignees \
47
-d '{"assignees":["hshah-mitre"]}'
48
49
+ - name: Assign reviewer via GitHub API
50
+ env:
51
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
52
+ run: |
53
+ curl -X POST \
54
+ -H "Authorization: token $GITHUB_TOKEN" \
55
+ -H "Accept: application/vnd.github+json" \
56
+ https://api.github.com/repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/requested_reviewers \
57
+ -d '{"reviewers":["hshah-mitre"]}'
58
+
59
60
61
# Build stage - converting md file to html using MkDocs
0 commit comments