Skip to content

Commit 5608d8e

Browse files
committed
quick fix on test action for label names
1 parent 5b60930 commit 5608d8e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
test:
1111
runs-on: ubuntu-latest
1212
if: github.event_name == 'push' ||
13-
((github.event.action == 'opened' || github.event.action == 'synchronize') && contains(github.event.pull_request.labels, 'READY TO TEST')) ||
13+
((github.event.action == 'opened' || github.event.action == 'synchronize') && contains(github.event.pull_request.labels.*.name, 'READY TO TEST')) ||
1414
(github.event.action == 'labeled' && github.event.label.name == 'READY TO TEST')
1515
steps:
1616
- uses: actions/checkout@v4
@@ -27,4 +27,4 @@ jobs:
2727
with:
2828
name: test-coverage-reports
2929
path: reports/
30-
if: ${{ always() }}
30+
if: ${{ always() }}

0 commit comments

Comments
 (0)