Add GitHub-to-Buzz issue automation (#11345)
This commit is contained in:
Executable
+14
@@ -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
|
||||
Reference in New Issue
Block a user