Add auth-label-issues.yml (#6488)

This commit is contained in:
s3krit
2020-06-25 11:56:45 +02:00
committed by GitHub
parent 1813ba215e
commit 4f84f1fbf4
+17
View File
@@ -0,0 +1,17 @@
# If the author of the issues is not a contributor to the project, label
# the issue with 'Z0-unconfirmed'
name: Label New Issues
on:
issues:
types: [opened]
jobs:
label-new-issues:
runs-on: ubuntu-latest
steps:
- name: Label drafts
uses: andymckay/labeler@master
if: github.event.issue.author_association == "NONE"
with:
add-labels: 'Z0-unconfirmed'