mirror of https://github.com/Lissy93/dashy.git
🔨 Updates anti-spam action to not run for feedback
This commit is contained in:
parent
78963905cb
commit
79ee9994e5
|
@ -6,7 +6,12 @@ on:
|
|||
types: [opened, reopened]
|
||||
jobs:
|
||||
check-user:
|
||||
if: ${{ ! contains( github.event.issue.labels.*.name, 'keep-open') && github.event.comment.author_association != 'CONTRIBUTOR' }}
|
||||
if: >
|
||||
${{
|
||||
! contains( github.event.issue.labels.*.name, '📌 Keep Open') &&
|
||||
! contains( github.event.issue.labels.*.name, '🌈 Feedback') &&
|
||||
github.event.comment.author_association != 'CONTRIBUTOR'
|
||||
}}
|
||||
runs-on: ubuntu-latest
|
||||
name: Close issue opened by non-stargazer
|
||||
steps:
|
||||
|
|
Loading…
Reference in New Issue