Skip to content

Commit 3e6d811

Browse files
authored
Update issue-or-pr-closed.yml
Add merge-conflict to removed labels
1 parent 2dcb4fd commit 3e6d811

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/issue-or-pr-closed.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,14 @@ jobs:
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:
20-
labels: ['needs-triage', 'waiting-response', 'needs-rebase']
20+
label:
21+
- 'needs-triage'
22+
- 'waiting-response'
23+
- 'needs-rebase'
24+
- 'merge-conflict'
2125
steps:
22-
- name: Remove ${{ matrix.labels }} label
26+
- name: Remove ${{ matrix.label }} label
2327
uses: actions-ecosystem/action-remove-labels@v1
24-
if: contains(github.event.*.labels.*.name, matrix.labels)
28+
if: contains(github.event.*.labels.*.name, matrix.label)
2529
with:
26-
labels: ${{ matrix.labels }}
30+
labels: ${{ matrix.label }}

0 commit comments

Comments
 (0)