From 5226293ae9bbc9d9702ef5b2d2edd5c15a379578 Mon Sep 17 00:00:00 2001 From: Drew Newberry Date: Mon, 27 Jul 2026 12:38:27 -0700 Subject: [PATCH] fix(tasks): scope pre-commit to lint checks Signed-off-by: Drew Newberry --- .agents/skills/build-from-issue/SKILL.md | 4 ++-- tasks/ci.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.agents/skills/build-from-issue/SKILL.md b/.agents/skills/build-from-issue/SKILL.md index 08054263fb..33219998d7 100644 --- a/.agents/skills/build-from-issue/SKILL.md +++ b/.agents/skills/build-from-issue/SKILL.md @@ -377,7 +377,7 @@ Verification has two phases: unit tests + pre-commit, then E2E tests (if applica On each attempt: ```bash -# Run pre-commit checks (includes unit tests, linting, formatting) +# Run pre-commit checks (linting, formatting, license headers) mise run pre-commit ``` @@ -640,7 +640,7 @@ If the `state:in-progress` label is present, the skill was previously started bu | `gh pr list --state open --search "..."` | Search for open PRs | | `gh pr create --title "..." --body "..."` | Create a pull request | | `gh api user --jq '.login'` | Get current GitHub username | -| `mise run pre-commit` | Run pre-commit checks (includes unit tests, lint, format) | +| `mise run pre-commit` | Run pre-commit checks (lint, format, license headers) | | `mise run e2e:docker` | Run smoke E2E against a standalone Docker-backed gateway | | `mise run e2e:podman` | Run smoke E2E against a Podman-backed gateway | | `mise run e2e:vm` | Run smoke E2E against the VM compute driver | diff --git a/tasks/ci.toml b/tasks/ci.toml index 6b3b8b2153..954656ca07 100644 --- a/tasks/ci.toml +++ b/tasks/ci.toml @@ -64,6 +64,6 @@ depends = ["ci"] hide = true ["pre-commit"] -description = "Alias for ci" -depends = ["ci"] +description = "Run lint, formatting, and license checks" +depends = ["lint"] hide = true