We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b60930 commit 5608d8eCopy full SHA for 5608d8e
1 file changed
.github/workflows/tests.yml
@@ -10,7 +10,7 @@ jobs:
10
test:
11
runs-on: ubuntu-latest
12
if: github.event_name == 'push' ||
13
- ((github.event.action == 'opened' || github.event.action == 'synchronize') && contains(github.event.pull_request.labels, 'READY TO TEST')) ||
+ ((github.event.action == 'opened' || github.event.action == 'synchronize') && contains(github.event.pull_request.labels.*.name, 'READY TO TEST')) ||
14
(github.event.action == 'labeled' && github.event.label.name == 'READY TO TEST')
15
steps:
16
- uses: actions/checkout@v4
@@ -27,4 +27,4 @@ jobs:
27
with:
28
name: test-coverage-reports
29
path: reports/
30
- if: ${{ always() }}
+ if: ${{ always() }}
0 commit comments