-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkflow.yml
33 lines (30 loc) · 1.08 KB
/
workflow.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Check if User is registered at jobsimulator.dev
on:
pull_request_target:
branches: ["main"]
permissions: write-all
jobs:
check:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
status: [200]
steps:
- name: Set up environment variables
env:
USER_ID: ${{ github.event.sender.id }}
GH_TOKEN: ${{ github.token }}
run: |
echo "USER_ID=${USER_ID}" >> $GITHUB_ENV
echo "GH_TOKEN=${GH_TOKEN}" >> $GITHUB_ENV
- name: Checkout
uses: actions/[email protected]
- name: Call API endpoint
if: ${{ matrix.status == 200 }}
run: |
status_code=$(curl -s -o /dev/null -w "%{http_code}" -X POST -d "${USER_ID}" https://jobsim-pr-user-check.deno.dev)
if [ $status_code -ne 200 ]; then
gh pr review ${{ github.event.number }} --comment --body "It looks like your GitHub account is not registered with CodebaseMentor. Please sign up at https://www.CodebaseMentor.com to have your PR be tested automatically. Thanks!"
exit 1
fi