Workspace
In this tab, you can:- Edit your Product Overview, which helps Macroscope understand your product better.
- Add or remove email recipients from your team’s weekly digest emails.
Account Settings
In this tab, you can toggle on/off features like:- Automatically adding PR summaries to your GitHub PR descriptions
- Custom code review rules
- Minimum severity thresholds for code review comments
- Slack @mention preferences — choose whether Macroscope @mentions you directly (e.g. when you’re assigned as a reviewer) or references your name without @mentioning you
Repo Settings

- Automatic code review
- Auto-assigning a reviewer when a PR is opened without a reviewer assigned
- Always-review labels that trigger code reviews even when automatic review is off
- Skip labels that prevent code reviews on matching PRs
Release Ref Patterns

The Release Ref Patterns field can take multiple inputs. Inputs can be glob patterns.A glob pattern for a GitHub release branch depends on the naming convention used for those branches. Here are some common patterns and their corresponding globs:
- Simple
release/prefix
release/ followed by a version or identifier, you can use: release/*This will match branches like release/v1.0, release/hotfix-2.1, but not release/feature/new-feature.- release/ prefix with nested segments
release/v1.0/rc1), you can use: release/**This will match release/v1.0, release/v1.0/rc1, release/v2.0/alpha/test.- Version-specific patterns
release/vX.Y.Z, you can use a more specific glob: release/v[0-9].[0-9].[0-9]*This would match release/v1.2.3, release/v10.5.0, but not release/v1.0-rc.- Pre-release or specific release types
release/v1.0-rc, release/v2.0-beta), you can combine patterns: release/v*..-rc*This would match branches like release/v1.0.0-rc1.