feat(infra): post to Slack #telemetry when a bug ticket is filed#265
Merged
Conversation
New workflow `.github/workflows/notify-slack-on-bug.yml` triggers on issues opened-with-`bug`-label OR labeled-with-`bug`-after-the-fact. Posts a structured Slack message (header + title link + author/repo context) via incoming webhook to the #telemetry channel. Covers both: - Manual issue filings labeled `bug` - /bicameral-report-bug skill submissions (which file with labels `dev,bug` per skills/bicameral-report-bug/SKILL.md) Setup required (one-time, by repo admin): 1. Create an incoming webhook for #telemetry on Slack 2. Add the URL as repo secret SLACK_TELEMETRY_WEBHOOK_URL Without the secret the job is a no-op. The slack-github-action step fails closed when the webhook URL is empty, so no spurious notifications. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Knapp-Kevin
pushed a commit
to Knapp-Kevin/bicameral-mcp
that referenced
this pull request
May 21, 2026
This was the wrong shape — committing internal-ops Slack routing into the public-ish repo. The cleaner pattern is GitHub's official Slack app (slack.github.com), which lives entirely in Slack workspace config: no code commit, no repo secret, can be toggled or filtered without opening a PR. Setup (one-time, by a Slack workspace admin in #telemetry): /github subscribe BicameralAI/bicameral-mcp issues +label:bug That single command covers: - Manual issue filings labeled `bug` - /bicameral-report-bug skill submissions (which file with `dev,bug`) - Late-labeled issues (re-fires when `bug` is added) Reverts PR BicameralAI#265 (commit c545d6b). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds
.github/workflows/notify-slack-on-bug.ymlthat posts to the #telemetry Slack channel whenever an issue is opened with — or later labeled — `bug`.Coverage
Setup required (one-time, by repo admin — can't automate)
Until the secret exists, the job is a no-op (the slack-github-action step fails closed when the webhook URL is empty).
Message shape
Header: ":lady_beetle: New bug — #N"
Section: bold issue title (linked)
Context: "Filed by @user in BicameralAI/bicameral-mcp"
Test plan