Commit aba7af9
fix(ci): drop job-level hashFiles() guards that fail the run before any job
Quoting the store:: filter was necessary but not sufficient: the run
from that fix still completed with zero jobs and GitHub still displayed
the workflow by path rather than by its name, the tell that it never
became a real workflow run.
The cause is 'if: hashFiles(...)' at job level. hashFiles() resolves
against the runner workspace, which does not exist when a job-level if
is evaluated, so the expression errors while the run graph is being
built — the run ends as failure with no jobs and no usable logs.
Both guards were pointless as well as fatal: Cargo.toml and Cargo.lock
are committed and always present in this repo.
cargo-audit.yml carries the identical pattern and the identical
symptom, so it is fixed here too.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>1 parent 0407c7e commit aba7af9
2 files changed
Lines changed: 0 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | | - | |
23 | 22 | | |
24 | 23 | | |
25 | 24 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
36 | | - | |
37 | 36 | | |
38 | 37 | | |
39 | 38 | | |
| |||
0 commit comments