You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -577,20 +577,20 @@ Building on the DevRel review automation, the docs CI can analyze PRs and notify
577
577
- Generate suggested documentation changes
578
578
579
579
3.**Slack Notification**: If documentation updates are suggested:
580
-
- A message is sent to the configured Slack channel (default: `#devrel`)
580
+
- A message is sent to the configured Slack channel (default: `#docs-alerts`)
581
581
- The message includes the PR details, affected docs, and suggested changes
582
582
- The DevRel team can review and apply the changes manually
583
583
584
584
**Requirements**:
585
585
586
586
-`ANTHROPIC_API_KEY` must be set in CI secrets
587
-
-`SLACK_BOT_TOKEN` must be set for Slack notifications
587
+
-`AZTEC_FOUNDATION_CI_SLACK_BOT_TOKEN` must be set for Slack notifications (this bot has access to `#docs-alerts`)
588
588
- Claude Code CLI must be installed (`@anthropic-ai/claude-code`)
589
589
- The PR must not be a draft
590
590
591
591
**Environment Variables**:
592
592
593
-
-`SLACK_DOC_UPDATE_CHANNEL` - Slack channel for notifications (default: `#devrel`)
593
+
-`SLACK_DOC_UPDATE_CHANNEL` - Slack channel for notifications (default: `#docs-alerts`)
594
594
-`DRY_RUN=1` - Skip Slack notification, just print what would be sent
595
595
596
596
**Implementation**: The automation is handled by `scripts/check_doc_references.sh`, which detects changed references, requests devrel review, sends a Slack notification, and dispatches ClaudeBox — all in a single pass.
if [[ -n"${AZTEC_FOUNDATION_CI_SLACK_BOT_TOKEN:-}" ]];then
360
360
# Build the Slack message
361
361
NOW=$(date -u '+%Y-%m-%d %H:%M UTC')
362
362
SLACK_MESSAGE="📚 *Documentation References Updated*\\n\\nThe following source files changed in <$PR_URL|PR #$PR_NUMBER> are referenced by documentation:\\n"
@@ -381,7 +381,7 @@ if [[ -n "${SLACK_BOT_TOKEN:-}" ]]; then
0 commit comments