Skip to content

Commit

Permalink
wip: check author association
Browse files Browse the repository at this point in the history
  • Loading branch information
galargh committed Aug 1, 2024
1 parent 37e2737 commit ba60343
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/check-author-association.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Check Author Association

on:
push:
pull_request:

defaults:
run:
shell: bash

jobs:
check:
runs-on: ubuntu-latest
steps:
- env:
GITHUB_TOKEN: ${{ github.token }}
run: gh api repos/NomicFoundation/edr/pulls/571 | jq -r '.author_association'
- if: github.event_name == 'pull_request'
run: echo '${{ github.event.pull_request.author_association }}'

0 comments on commit ba60343

Please sign in to comment.