Add mixtral test #12
Workflow file for this run
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: approve | |
on: | |
pull_request: | |
branches: [ "main" ] | |
types: [opened, synchronize, reopened] | |
jobs: | |
approve: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Get PR Approvals | |
run: | | |
PR_NUMBER=$(jq --raw-output .number "$GITHUB_EVENT_PATH") | |
APPROVERS=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ | |
"https://api.github.com/repos/${{ github.repository }}/pulls/$PR_NUMBER/reviews" \ | |
| jq -r '.[] | select(.state == "APPROVED") | .user.login') | |
echo "APPROVERS=$APPROVERS" >> $GITHUB_ENV | |
- name: Check for Specific Approver | |
run: | | |
SPECIFIC_APPROVER="aoyulong" | |
if echo "$APPROVERS" | grep -q "$SPECIFIC_APPROVER"; then | |
echo "Specific approver has approved the PR." | |
else | |
echo "The PR has not been approved by the specific approver." | |
exit 1 | |
fi |