fix(uat-tester): add missing bash permissions for worker clone and docs
CI / lint (pull_request) Successful in 35s
CI / typecheck (pull_request) Successful in 1m5s
CI / quality (pull_request) Successful in 51s
CI / build (pull_request) Successful in 32s
CI / push-validation (pull_request) Successful in 36s
CI / helm (pull_request) Successful in 40s
CI / security (pull_request) Successful in 1m29s
CI / unit_tests (pull_request) Successful in 7m52s
CI / docker (pull_request) Successful in 1m39s
CI / coverage (pull_request) Successful in 10m48s
CI / integration_tests (pull_request) Successful in 21m27s
CI / status-check (pull_request) Successful in 3s

Worker Mode requires git clone, git config, git pull, git checkout,
git add, git commit, git push, and uv commands in bash. These were all
missing from the frontmatter permission block, causing every Worker Mode
instance to fail immediately with permission denied on the first command.
This commit is contained in:
2026-05-31 11:55:18 -04:00
committed by drew
parent 0c78b8d2be
commit e2ebfcbb09
+10
View File
@@ -40,6 +40,16 @@ permission:
"git diff*": allow
"git show*": allow
"git branch*": allow
# Read-write git commands (worker clone and documentation):
"git clone *": allow
"git config *": allow
"git pull *": allow
"git checkout *": allow
"git add *": allow
"git commit *": allow
"git push *": allow
# Python/UV environment:
"uv *": allow
task:
"*": deny
# ONE-SHOT helpers only: