mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 23:18:01 +00:00
18 lines
409 B
YAML
18 lines
409 B
YAML
# 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'
|