Skip to content

Commit

Permalink
fix: exclude TAs and Martin from triggering active particpation (KTH#…
Browse files Browse the repository at this point in the history
  • Loading branch information
algomaster99 authored Oct 13, 2024
1 parent aa25637 commit 17cb01e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/lecture_participation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ permissions:

jobs:
track-participation:
if: github.event.issue.number == 2370
if: >
github.event.issue.number == 2370 &&
github.event.comment.author_association != 'COLLABORATOR' &&
github.event.comment.author_association != 'OWNER' &&
github.event.comment.author_association != 'MEMBER'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 17cb01e

Please sign in to comment.