Conversation
Signed-off-by: Tomasz Janiszewski <tomek@redhat.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #86 +/- ##
==========================================
- Coverage 78.37% 73.88% -4.49%
==========================================
Files 27 30 +3
Lines 1216 1302 +86
==========================================
+ Hits 953 962 +9
- Misses 223 300 +77
Partials 40 40
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Signed-off-by: Tomasz Janiszewski <tomek@redhat.com>
E2E Test ResultsCommit: b3754df |
mtodor
left a comment
There was a problem hiding this comment.
What do you think to add label for directory: "/" and also require that label to be set in order to trigger auto merge?
In that case we will get PRs for both (base go.mod and tools go.mod), but only PRs updating base modules will be auto merged.
Add label-based control for Dependabot auto-merge instead of excluding entire modules. Root module dependencies get auto-merge label, while e2e-tests/tools dependencies require manual review. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
| contains(github.event.pull_request.labels.*.name, 'auto-merge') | ||
| steps: | ||
| - name: Enable auto-merge for Dependabot PRs | ||
| run: gh pr merge --auto --squash "$PR_URL" && gh pr review --approve "$PR_URL" |
There was a problem hiding this comment.
Is this order correct? Or it should be approve first then merge?
Description
Auto-merge dependabot PRs but skip e2e tests auto updates as mcp checker will be green even when not working.
Validation