mirror of
https://github.com/Lissy93/dashy.git
synced 2025-04-07 20:55:11 +02:00
🏗️ Check if user not contributor
This commit is contained in:
parent
2162424ad0
commit
5ebbe25c6e
8
.github/workflows/issue-spam-control.yml
vendored
8
.github/workflows/issue-spam-control.yml
vendored
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user