-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (29 loc) · 1.2 KB
/
.env.example
File metadata and controls
36 lines (29 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Notification Configuration (Apprise)
# Supports Telegram, Discord, Slack, Email, and more.
# Separate multiple URLs with commas.
# Examples:
# tgram://BOT_TOKEN/CHAT_ID
# discord://WEBHOOK_ID/WEBHOOK_TOKEN
# slack://TOKEN/A/B/C
# Mobile/SMS Examples:
# pover://USER_KEY@TOKEN (Pushover)
# pbul://ACCESS_TOKEN (Pushbullet)
# twilio://ACCOUNT_SID:AUTH_TOKEN@FROM_PHONE/TO_PHONE (Twilio SMS)
# Email Example:
# mailto://user:pass@smtp.example.com?to=recipient@example.com
NOTIFICATION_URLS=
# GitHub Personal Access Token (Optional but recommended for higher rate limits)
# Get from https://github.com/settings/tokens (Classic) or https://github.com/settings/tokens?type=beta (Fine-grained)
GITHUB_TOKEN=your_github_token
# Repository to monitor (format: owner/repo)
# Can be a comma-separated list: owner/repo1,owner/repo2
GITHUB_REPOS=google/guava
# Check interval in seconds
CHECK_INTERVAL=600
# --- Optional Enhancements ---
# Monitor all public repositories for a specific user (fetches dynamically)
# GITHUB_USER=your_username
# Exclude archived repositories (Y/N)
# EXCLUDE_ARCHIVED=Y
# Exclude specific repositories (comma-separated, e.g., owner/repo1,owner/repo2)
# EXCLUDE_REPOS=owner/repo_to_ignore