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
In this tab, you can toggle on/off features like:- Automatically adding PR summaries to your GitHub PR descriptions
- Custom code review rules
Connections
This is where you can configure your connections to your Slack, Linear, and Jira accounts. Learn more about how to integrate Macroscope with your issue management systems.Repos

- Automatic code review
- Auto-assigning a reviewer when a PR is opened without a reviewer assigned
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.