🏗️ Check if user not contributor

This commit is contained in:
Alicia Sykes 2021-10-01 20:56:57 +01:00
parent 2162424ad0
commit 5ebbe25c6e
1 changed files with 4 additions and 4 deletions

View File

@ -1,12 +1,12 @@
# Will add a comment and close new issues opened by users that may be spam, or have not starred
# Is still a work in progress, will also detect if user has previous activity in repo and check when joined GH
# Will add a comment and close any new issues opened by
# users who have not yet committed to, or starred the repo
name: 🎯 Issue Spam Control
on:
issues:
types: [opened, reopened]
jobs:
check:
if: ${{ ! contains( github.event.issue.labels.*.name, 'keep-open') }}
check-user:
if: ${{ ! contains( github.event.issue.labels.*.name, 'keep-open') && github.event.comment.author_association != 'CONTRIBUTOR' }}
runs-on: ubuntu-latest
name: Close issue opened by non-stargazer
steps: