ci: empty string makes contains true

pull/4064/head
Divyansh Singh 6 months ago
parent bb22bb27c4
commit ba0dbf5e8e

@ -28,8 +28,8 @@ jobs:
matrix: matrix:
node_version: [18, 20, 22] node_version: [18, 20, 22]
exclude: exclude:
- node_version: ${{ contains('labeled,ready_for_review', github.event.action) && 18 }} - node_version: ${{ (github.event.action == 'labeled' || github.event.action == 'ready_for_review') && 18 }}
- node_version: ${{ contains('labeled,ready_for_review', github.event.action) && 20 }} - node_version: ${{ (github.event.action == 'labeled' || github.event.action == 'ready_for_review') && 20 }}
steps: steps:
- name: Checkout - name: Checkout

Loading…
Cancel
Save