Skip to content
Merged
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
14 changes: 9 additions & 5 deletions docs/managed-mode.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ automations:
guidelines: {{ loadDescriptionGuidelines() | dump }}
```

### Smart Labeling (Claude Code Detection)
### Smart Labeling (Agent Coding Detection)

Automatically apply labels to PRs that are assisted by Claude Code to track time savings, PR risk, and productivity lift from AI tools. This automation can detect Claude Code usage through multiple methods including co-authorship, user prompts, known users, or specific tags.

Expand Down Expand Up @@ -112,14 +112,11 @@ colors:
green: '0e8a16'
```

### Dependabot Auto-merge
### Dependabot Minor Bump Auto-Approve

Auto-merge Dependabot PRs for patch and minor version updates. This automation helps maintain dependencies while ensuring only safe, non-breaking changes are automatically approved and merged.

```yaml
manifest:
version: 1.0

automations:
merge_dependabot_minor:
on:
Expand All @@ -135,6 +132,13 @@ automations:
args:
comment: Dependabot `minor` version bumps are approved automatically.

dependabot_bump: {{ pr.description | checkDependabot | checkSemver }}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧾 Readability - Unclear Configuration Placement: Either properly nest the dependabot_bump configuration under an appropriate parent section (like automations) or clearly document where this configuration belongs in the overall YAML structure.

Suggested change
dependabot_bump: {{ pr.description | checkDependabot | checkSemver }}
automations:
dependabot_bump:
on:
- pr_created
if:
- dependabot_bump: {{ pr.description | checkDependabot | checkSemver }}

```

### Dependabot Patch Bump Auto-Approve

```yaml
automations:
merge_dependabot_patch:
on:
- pr_created
Expand Down