We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 745e563 commit f955c44Copy full SHA for f955c44
1 file changed
.github/workflows/check_nn_versions.yaml
@@ -62,6 +62,11 @@ jobs:
62
id: filter
63
run: |
64
echo "config=$(jq --arg date $MIN_LOCK_DATE --compact-output '[.[] | select(.date >= $date)]' config.json)" >> "$GITHUB_OUTPUT"
65
+ - name: Validate filtered versions
66
+ if: steps.filter.outputs.config == '[]'
67
+ run: |
68
+ echo "::error::No R versions match min_lock_date '${{ env.MIN_LOCK_DATE }}'. Choose a date before the earliest configured version."
69
+ exit 1
70
R-CMD-check:
71
needs: filter-nn-versions
72
runs-on: '${{ matrix.os }}'
0 commit comments