Skip to content

WIP: Test contributor action #7

WIP: Test contributor action

WIP: Test contributor action #7

Workflow file for this run

name: Check PR author
on:
pull_request:
jobs:
check-member:
runs-on: ubuntu-latest
name: Check if an user exists
steps:
- name: Check if member exists
id: check-member
uses: bryantson/[email protected]
with:
team_slug: codeforlife
org_slug: ocadotechnology
gh_token: ${{ secrets.GITHUB_TOKEN }}
username: ${{ github.event.pull_request.user.login }}
- name: Print whether member exists
run: |
echo "Does member exists: ${{ steps.check-member.outputs.exists-in-team }}"