Skip to content

Commit b837048

Browse files
committed
chore(ci): Skip stable validation for datasets with unreleased features
1 parent 57e55af commit b837048

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/validate_datasets.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,16 @@ jobs:
9595
fi
9696
shell: bash
9797

98-
- name: Skip MRS validation for legacy validator
98+
- name: Skip legacy validation for post-legacy datasets
9999
run: for DS in mrs_* dwi_deriv; do touch $DS/.SKIP_VALIDATION; done
100100
if: matrix.bids-validator == 'legacy'
101101
shell: bash
102102

103+
- name: Skip stable validation for datasets with unreleased features
104+
run: for DS in dwi_deriv; do touch $DS/.SKIP_VALIDATION; done
105+
if: matrix.bids-validator != 'dev'
106+
shell: bash
107+
103108
- name: Set BIDS_SCHEMA variable for dev version
104109
if: matrix.bids-validator == 'dev'
105110
# When proposing new features, schema changes may be necessary.

0 commit comments

Comments
 (0)