Skip to content

Commit

Permalink
Apply triage labels when no stack filter matches (#2156)
Browse files Browse the repository at this point in the history
  • Loading branch information
k1ngalph0x authored May 22, 2023
1 parent 8bd7c45 commit 805fbc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ jobs:
.parse('${{ needs.get-changes.outputs.changes }}')
.filter(change => stacks.includes(change))
.map(change => `🧱 stack: ${change.replace("_", " ")}`)
if (labels.len == 0) {
if (!labels.length) {
labels.push("🚦 status: awaiting triage", "🏷 status: label work required")
}
github.rest.issues.addLabels({
Expand Down

0 comments on commit 805fbc3

Please sign in to comment.