ci: lint workflow files with actionlint - #47
Merged
Conversation
loss-and-quick
force-pushed
the
ci/actionlint-workflow
branch
from
June 20, 2026 16:45
a521c96 to
084147d
Compare
Add a dedicated workflow that runs actionlint on `.github/workflows/**`.
It catches what plain YAML validity doesn't — undefined `needs`/job
references, malformed `${{ }}` expressions, unknown action inputs, and
(via shellcheck) issues in `run:` scripts. A dead `needs:` reference
previously shipped because nothing guarded the workflows themselves.
loss-and-quick
force-pushed
the
ci/actionlint-workflow
branch
from
June 20, 2026 16:49
084147d to
e73eea0
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add a dedicated Lint Workflows workflow that runs
actionlinton.github/workflows/**. It catches what plain YAML validity and the existing CI can't — undefinedneeds:/job references, malformed${{ }}expressions, unknown action inputs, and (via shellcheck) issues inrun:blocks. The recently-fixed deadneeds: releasereference shipped silently precisely because nothing guarded the workflow files; this closes that gap.Affected layer
frontend/— React Web UImodule/— Magisk/KernelSU/APatch payload (shell + packagedkasumi-proxybackend)scripts/— build / release helpers.github/Verification
Workflow-only change; the Web UI / module checks below don't apply.
actionlintclean on all workflow files (the new job itself, plusci.yml/release.yml/nightly.yml)Checklist
Notes for reviewers
actionlintis installed by downloading the pinned release binary (1.7.12) and verifying it against the release's own publishedchecksums.txt—taiki-e/install-actiondoesn't carry actionlint, andcurl|bashof an upstream script pins nothing. Triggers only when.github/workflows/**changes.