Skip to content

Commit

Permalink
Add auth-label-issues.yml (paritytech#6488)
Browse files Browse the repository at this point in the history
  • Loading branch information
s3krit authored Jun 25, 2020
1 parent a5f38dc commit 95747db
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/auto-label-issues.yml
Original file line number Diff line number Diff line change
@@ -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'

0 comments on commit 95747db

Please sign in to comment.