From c85d8ee6d1be4b7894bde6730387348412e1356d Mon Sep 17 00:00:00 2001 From: iexos Date: Mon, 9 Feb 2026 02:18:52 +0100 Subject: [PATCH 1/2] small fixes --- pkg/git/commit.go | 2 +- tests/integration/helpers/common.bash | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/pkg/git/commit.go b/pkg/git/commit.go index 38a22024..f4736d93 100644 --- a/pkg/git/commit.go +++ b/pkg/git/commit.go @@ -35,7 +35,7 @@ func Commit(repoPath, commitMessage string, dryRun bool) error { if !dryRun { // NOTE(d1): `All: true` does not include untracked files - _, err = commitWorktree.Commit(commitMessage, &git.CommitOptions{All: true}) + _, err := commitWorktree.Commit(commitMessage, &git.CommitOptions{All: true}) if err != nil { return err } diff --git a/tests/integration/helpers/common.bash b/tests/integration/helpers/common.bash index 0ad6ebaf..64e49acc 100644 --- a/tests/integration/helpers/common.bash +++ b/tests/integration/helpers/common.bash @@ -13,7 +13,6 @@ _common_setup() { load "$PWD/tests/integration/helpers/docker" export ABRA="$PWD/abra" - export KADABRA="$PWD/kadabra" export TEST_APP_NAME="$(basename "${BATS_TEST_FILENAME//./_}")" export TEST_APP_DOMAIN="$TEST_APP_NAME.$TEST_SERVER" -- 2.49.0 From 98e48c95c7f5f520d25658c4d639eeb69489481d Mon Sep 17 00:00:00 2001 From: iexos Date: Fri, 13 Feb 2026 15:56:13 +0100 Subject: [PATCH 2/2] fix: duplicate R015 rule number --- pkg/lint/recipe.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/lint/recipe.go b/pkg/lint/recipe.go index 82ef3eb8..c1b8c158 100644 --- a/pkg/lint/recipe.go +++ b/pkg/lint/recipe.go @@ -142,7 +142,7 @@ var LintRules = map[string][]LintRule{ Function: LintAppService, }, { - Ref: "R015", + Ref: "R016", Level: i18n.G("error"), Description: i18n.G("deploy labels stanza present"), HowToResolve: i18n.G("include \"deploy: labels: ...\" stanza"), -- 2.49.0