Fixed Triage Label Check

This (hopefully) corrects the label presence check. The goal is to avoid applying the triage label when an issue is created with a label.
This commit is contained in:
Christopher Allford 2022-02-18 12:41:47 -08:00 committed by GitHub
parent bacfee1614
commit b8293e4216
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -10,6 +10,6 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: actions-ecosystem/action-add-labels@v1
if: github.event.issue.labels == ''
if: github.event.issue.labels[0] != null
with:
labels: 'status: awaiting triage'