mirror of
https://github.com/taigrr/github-to-signal.git
synced 2026-04-02 11:19:15 -07:00
33 lines
1000 B
TOML
33 lines
1000 B
TOML
# GitHub webhook secret (set in your GitHub webhook settings)
|
|
webhook_secret = ""
|
|
|
|
# Address to listen on
|
|
listen_addr = ":9900"
|
|
|
|
# signal-cli JSON-RPC endpoint
|
|
signal_url = "http://127.0.0.1:8081"
|
|
|
|
# signal-cli account (phone number registered with signal-cli)
|
|
signal_account = "+YOURNUMBER"
|
|
|
|
# Signal recipient UUID for DM notifications
|
|
signal_recipient = ""
|
|
|
|
# OR: Signal group ID for group notifications (overrides signal_recipient)
|
|
# signal_group_id = ""
|
|
|
|
# Event filter — comma-separated list of event types to forward.
|
|
# Use "event" for all actions, or "event:action" for specific actions.
|
|
# Leave empty or omit to forward everything.
|
|
#
|
|
# Examples:
|
|
# events = "pull_request:opened, pull_request:closed, issues:opened"
|
|
# events = "push, pull_request, workflow_run"
|
|
# events = "pull_request:opened"
|
|
#
|
|
# Available events: push, issues, issue_comment, pull_request,
|
|
# pull_request_review, pull_request_review_comment, release,
|
|
# star, fork, workflow_run, create, delete
|
|
#
|
|
# events = ""
|