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 2dcb4fd commit 3e6d811Copy full SHA for 3e6d811
.github/workflows/issue-or-pr-closed.yml
@@ -17,10 +17,14 @@ jobs:
17
runs-on: ubuntu-latest
18
strategy:
19
matrix:
20
- labels: ['needs-triage', 'waiting-response', 'needs-rebase']
+ label:
21
+ - 'needs-triage'
22
+ - 'waiting-response'
23
+ - 'needs-rebase'
24
+ - 'merge-conflict'
25
steps:
- - name: Remove ${{ matrix.labels }} label
26
+ - name: Remove ${{ matrix.label }} label
27
uses: actions-ecosystem/action-remove-labels@v1
- if: contains(github.event.*.labels.*.name, matrix.labels)
28
+ if: contains(github.event.*.labels.*.name, matrix.label)
29
with:
- labels: ${{ matrix.labels }}
30
+ labels: ${{ matrix.label }}
0 commit comments