Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,7 @@ jobs:
cat .github/auto_assign.yml || echo "No auto_assign.yml found"

- uses: actions/checkout@v3
- name: Assign reviewers
uses: kentaro-m/auto-assign-action@v1.2.4
with:
reviewers: hshah-mitre

- name: Assign assignee via GitHub API
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -49,6 +46,16 @@ jobs:
https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/assignees \
-d '{"assignees":["hshah-mitre"]}'

- name: Assign reviewer via GitHub API
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
curl -X POST \
-H "Authorization: token $GITHUB_TOKEN" \
-H "Accept: application/vnd.github+json" \
https://api.github.com/repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/requested_reviewers \
-d '{"reviewers":["vsong15"]}'



# Build stage - converting md file to html using MkDocs
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ author: That Would Be Me
# AI4SDLC


## Getting started five
## Getting started nine

To make it easy for you to get started with GitLab, here's a list of recommended next steps.

Expand Down