willfire 0.1.7 → 0.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/predict.js +4 -1
  2. package/package.json +1 -1
package/dist/predict.js CHANGED
@@ -171,7 +171,10 @@ function expandMatrixDetailed(strategy) {
171
171
  }
172
172
  }
173
173
  combos.push(...extra);
174
- return combos.length > 0 ? combos : [null];
174
+ // Zero combinations is a real answer, not a missing one: an empty axis, or an
175
+ // `exclude` that removes everything, schedules no jobs at all. Only an absent
176
+ // `matrix:` key means "one unsuffixed job", and that returned above.
177
+ return combos;
175
178
  }
176
179
  /** Return list of matrix combination dicts, or null if dynamic. */
177
180
  export function expandMatrix(strategy) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "willfire",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "Predict the set of CI check entries GitHub Actions will create for a pull request",
5
5
  "license": "MIT",
6
6
  "packageManager": "pnpm@10.33.0",