Skip to content

Commit 9c31079

Browse files
joshpricezachdaniel
authored andcommitted
fix(ci): reference the unused-deps input by its declared name
The input is declared as `unused-deps` but the job is gated on `inputs.unused_deps`. That property does not exist, so the expression is empty, and the job has been skipped on every run since the feature was added in 2f2015e (2026-03-25) — `mix deps.unlock --check-unused` has never actually run. Visible on any recent run of Ash's own CI: the job reports "skipped" in both matrix legs despite the input defaulting to true. Nearby gates such as `inputs.changelog-lint` use the hyphenated name directly and work, so this is just the one identifier.
1 parent 769a7dd commit 9c31079

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ash-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ jobs:
590590
unused-deps:
591591
name: mix deps.unlock --check-unused
592592
runs-on: ubuntu-latest
593-
if: ${{inputs.unused_deps}}
593+
if: ${{inputs.unused-deps}}
594594
needs:
595595
- build-test
596596
steps:

0 commit comments

Comments
 (0)