2022-02-18 20:35:24 +00:00
|
|
|
name: Add Triage Label
|
|
|
|
|
|
|
|
on:
|
|
|
|
issues:
|
|
|
|
types: opened
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
add_label:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions-ecosystem/action-add-labels@v1
|
2022-02-18 20:43:00 +00:00
|
|
|
if: github.event.issue.labels[0] == null
|
2022-02-18 20:35:24 +00:00
|
|
|
with:
|
|
|
|
labels: 'status: awaiting triage'
|