| 123456789101112131415161718192021222324 |
- # Server Configuration
- HOST=0.0.0.0
- PORT=3000
- WEBHOOK_PATH=/webhook
- WEBHOOK_SECRET=
- # Webhook Event Configuration
- # Enable/disable webhook events (commands are configured in commands.json)
- # Set to 'true' to enable event handling, 'false' to disable
- WEBHOOK_PUSH_ENABLED=true
- WEBHOOK_PULL_REQUEST_ENABLED=false
- WEBHOOK_CREATE_ENABLED=false
- WEBHOOK_DELETE_ENABLED=false
- WEBHOOK_RELEASE_ENABLED=false
- WEBHOOK_ISSUES_ENABLED=false
- WEBHOOK_ISSUE_COMMENT_ENABLED=false
- WEBHOOK_GLOBAL_ENABLED=false
- # Legacy Command Configuration (deprecated - use commands.json instead)
- # These settings are maintained for backward compatibility
- # WEBHOOK_PUSH_COMMAND=echo "Push to {{branch}} by {{pusher}} in {{repo}}"
- # WEBHOOK_PUSH_FILTER_BRANCH=main
- # COMMAND_TIMEOUT=300000
- # COMMAND_WORKING_DIR=/workspace
|