Add GitHub-to-Buzz issue automation (#11345)

This commit is contained in:
Douwe Osinga
2026-08-26 21:29:34 +00:00
committed by GitHub
parent 867a83cfc7
commit f812cbdcd8
13 changed files with 3552 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/bin/sh
set -u
automation_dir=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
interval=${BUZZ_MANAGER_INTERVAL_SECONDS:-3600}
while true; do
GOOSE_MODE=auto GOOSE_DISABLE_SESSION_NAMING=true goose run \
--recipe "$automation_dir/github_issue_manager.yaml" \
--params "automation_dir=$automation_dir" \
--no-session || printf '%s\n' "GitHub issue manager run failed" >&2
sleep "$interval"
done