mirror of
https://github.com/Lissy93/dashy.git
synced 2025-07-23 13:45:33 +02:00
🔨 Updates anti-spam action to not run for feedback
This commit is contained in:
parent
78963905cb
commit
79ee9994e5
7
.github/workflows/issue-spam-control.yml
vendored
7
.github/workflows/issue-spam-control.yml
vendored
@ -6,7 +6,12 @@ on:
|
|||||||
types: [opened, reopened]
|
types: [opened, reopened]
|
||||||
jobs:
|
jobs:
|
||||||
check-user:
|
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
|
runs-on: ubuntu-latest
|
||||||
name: Close issue opened by non-stargazer
|
name: Close issue opened by non-stargazer
|
||||||
steps:
|
steps:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user