diff --git a/.github/.env.shared b/.github/.env.shared index 2f308b6..c2cd3ef 100644 --- a/.github/.env.shared +++ b/.github/.env.shared @@ -99,7 +99,7 @@ UPDATE_PRE_COMMIT_HOOKS_TEST_ON_UPDATE=true # Default: Tes DEPENDABOT_MAINTAINER_USERNAME=mrz1836 # Username to notify for manual reviews DEPENDABOT_AUTO_MERGE_PATCH=true # Auto-merge patch updates DEPENDABOT_AUTO_MERGE_MINOR_DEV=true # Auto-merge minor updates for dev dependencies -DEPENDABOT_AUTO_MERGE_MINOR_PROD=false # Auto-merge minor updates for prod dependencies +DEPENDABOT_AUTO_MERGE_MINOR_PROD=true # Auto-merge minor updates for prod dependencies DEPENDABOT_AUTO_MERGE_SECURITY_NON_MAJOR=true # Auto-merge security updates (except major) DEPENDABOT_ALERT_ON_MAJOR=true # Alert maintainer on major updates DEPENDABOT_ALERT_ON_MINOR_PROD=true # Alert maintainer on minor prod updates diff --git a/.github/AGENTS.md b/.github/AGENTS.md index 6242bbe..bbc213a 100644 --- a/.github/AGENTS.md +++ b/.github/AGENTS.md @@ -468,7 +468,7 @@ Code must be cleanly formatted and pass all linters before being committed. ```bash go fmt ./... goimports -w . -gofumpt -w ./... +gofumpt -w . golangci-lint run go vet ./... ```