Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
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
19 changes: 19 additions & 0 deletions trigger-dev/github-ai-agent/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Hookdeck
HOOKDECK_API_KEY= # Project API key (Dashboard -> Project Settings -> API Keys)
GITHUB_WEBHOOK_SECRET= # Shared secret for GitHub HMAC verification

# Trigger.dev (Production only — this demo deploys to prod and uses prod for Hookdeck HTTP triggers)
TRIGGER_SECRET_KEY= # Production API key from dashboard (tr_prod_...)
TRIGGER_PROJECT_REF= # Project ref from Trigger.dev dashboard (e.g., proj_xxxx)

# GitHub (used by tasks at runtime)
GITHUB_REPO= # e.g., hookdeck/hookdeck-demos
GITHUB_ACCESS_TOKEN= # GitHub API token with repo scope (tasks + deploy sync)
GITHUB_LABELS= # CSV of labels for issue labeler (auto-fetched during setup)

# AI (used by tasks at runtime)
ANTHROPIC_API_KEY= # From console.anthropic.com

# Slack (used by handle-push task)
SLACK_WEBHOOK_URL= # Incoming webhook URL from Slack app settings
# GITHUB_PUSH_SUMMARY_DEFAULT_BRANCH_ONLY=true # optional: limit Slack summaries to default branch only
5 changes: 5 additions & 0 deletions trigger-dev/github-ai-agent/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules/
dist/
.env
.trigger/
.hookdeck-source-url
Loading