We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57e55af commit b837048Copy full SHA for b837048
.github/workflows/validate_datasets.yml
@@ -95,11 +95,16 @@ jobs:
95
fi
96
shell: bash
97
98
- - name: Skip MRS validation for legacy validator
+ - name: Skip legacy validation for post-legacy datasets
99
run: for DS in mrs_* dwi_deriv; do touch $DS/.SKIP_VALIDATION; done
100
if: matrix.bids-validator == 'legacy'
101
102
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
+
108
- name: Set BIDS_SCHEMA variable for dev version
109
if: matrix.bids-validator == 'dev'
110
# When proposing new features, schema changes may be necessary.
0 commit comments