Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion skills/last30days/scripts/lib/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def read_secret_env(name: str, default: str | None = None) -> str | None:
"AUTH_TOKEN", "CT0", "BSKY_HANDLE", "BSKY_APP_PASSWORD",
"TRUTHSOCIAL_TOKEN", "BRAVE_API_KEY", "EXA_API_KEY", "SERPER_API_KEY",
"OPENROUTER_API_KEY", "PERPLEXITY_API_KEY", "PARALLEL_API_KEY", "XQUIK_API_KEY",
"XIAOHONGSHU_API_BASE",
"XIAOHONGSHU_API_BASE", "GITHUB_TOKEN",
)

# pass(1) integration: Linux/Unix analog of the Keychain source. Each key in
Expand Down Expand Up @@ -522,6 +522,7 @@ def get_config(policy: ConfigLoadPolicy | None = None) -> dict[str, Any]:
# resolved above via openai_auth).
('GROQ_API_KEY', None),
('LAST30DAYS_YT_SUB_LANGS', 'en,es,pt'),
('GITHUB_TOKEN', None),
Comment thread
greptile-apps[bot] marked this conversation as resolved.
]

for key, default in keys:
Expand Down
1 change: 1 addition & 0 deletions skills/last30days/scripts/setup-keychain.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ ALL_KEYS=(
PARALLEL_API_KEY
XQUIK_API_KEY
XIAOHONGSHU_API_BASE
GITHUB_TOKEN
)

if [[ "${OSTYPE:-}" != darwin* ]]; then
Expand Down
1 change: 1 addition & 0 deletions skills/last30days/scripts/setup-pass.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ ALL_KEYS=(
PARALLEL_API_KEY
XQUIK_API_KEY
XIAOHONGSHU_API_BASE
GITHUB_TOKEN
)

REPLACE=0
Expand Down
Loading