We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb22bb2 commit ba0dbf5Copy full SHA for ba0dbf5
.github/workflows/ci.yml
@@ -28,8 +28,8 @@ jobs:
28
matrix:
29
node_version: [18, 20, 22]
30
exclude:
31
- - node_version: ${{ contains('labeled,ready_for_review', github.event.action) && 18 }}
32
- - node_version: ${{ contains('labeled,ready_for_review', github.event.action) && 20 }}
+ - node_version: ${{ (github.event.action == 'labeled' || github.event.action == 'ready_for_review') && 18 }}
+ - node_version: ${{ (github.event.action == 'labeled' || github.event.action == 'ready_for_review') && 20 }}
33
34
steps:
35
- name: Checkout
0 commit comments