We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f537763 commit 8ffe8b1Copy full SHA for 8ffe8b1
.github/workflows/issue-routing-helper.yml
@@ -9,7 +9,12 @@ env:
9
jobs:
10
route:
11
runs-on: ubuntu-latest
12
- if: "startsWith(github.event.label.name, 'Team: ')"
+ if: >-
13
+ startsWith(github.event.label.name, 'Team: ')
14
+ &&
15
+ !contains(github.event.issue.labels.*.name, 'Status: Backlog')
16
17
+ !contains(github.event.issue.labels.*.name, 'Status: In Progress')
18
steps:
19
- name: "Ensure a single 'Team: *' label with 'Status: Untriaged'"
20
run: |
0 commit comments