Add tests, CODEOWNERS, and Dependabot#1
Merged
Merged
Conversation
- CI workflow: actionlint + shellcheck on action.yml, plus a smoke test that spins up a local HTTP server and exercises the action in three positive and two negative cases (including an unreachable endpoint) - CODEOWNERS = @KaliCZ for branch-protection enforcement - Dependabot weekly grouped updates for github-actions so the CI's SHA-pinned dependencies stay current without manual bumping Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
First-party actions/* are maintained by GitHub; SHA-pinning them adds noise without meaningful supply-chain protection. Keep SHA pins for third-party actions only. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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
ci.yml) with two jobs:actionlint— validatesaction.ymland runs shellcheck on the embedded bashsmoke-test— spins up a local Python HTTP server and exercises the action end-to-end:expected-contentmatch passesexpected-contentmismatch fails (negative test)@KaliCZso the branch ruleset can enforce codeowner reviewgithub-actionsso the CI's SHA-pinned dependencies stay freshAll third-party actions are SHA-pinned with a version comment.
Test plan
actionlintjob passessmoke-testjob passes (all four scenarios)🤖 Generated with Claude Code