forked from Hithomelabs/Gitea_Event_Bridge
23 lines
617 B
Plaintext
23 lines
617 B
Plaintext
# Gitea Event Bridge Configuration
|
|
|
|
# Server Configuration
|
|
HOST=0.0.0.0
|
|
PORT=5000
|
|
DEBUG=false
|
|
|
|
# OpenCode Server URL (for triggering pipelines)
|
|
OPENCODE_URL=http://localhost:8080
|
|
|
|
# Activity Log File (JSON Lines format)
|
|
LOG_FILE=activity.json
|
|
|
|
# Gitea Webhook Secret (optional)
|
|
# Generate a secret in Gitea webhook settings and set it here
|
|
# The secret is used to verify webhook signature
|
|
GITEA_WEBHOOK_SECRET=
|
|
|
|
# Auto-Trigger Configuration
|
|
# Automatically trigger pipeline when labels/commands detected
|
|
AUTO_TRIGGER_PIPELINE=true
|
|
# Automatically trigger lead review on PR opened/synchronized
|
|
AUTO_TRIGGER_REVIEW=true |