Skip to content

ci: dependabot adjustments - #1067

Merged
TomerFi merged 1 commit into
devfrom
chore/dependabot-fix
Aug 23, 2026
Merged

ci: dependabot adjustments#1067
TomerFi merged 1 commit into
devfrom
chore/dependabot-fix

Conversation

@TomerFi

@TomerFi TomerFi commented Aug 23, 2026

Copy link
Copy Markdown
Owner

Summary by CodeRabbit

  • Chores
    • Configured automatic approval for eligible automated dependency update pull requests.
    • Grouped GitHub Actions and pre-commit dependency updates to streamline maintenance.

Signed-off-by: Tomer Figenblat <tomer@figenblat.com>
@sourcery-ai

sourcery-ai Bot commented Aug 23, 2026

Copy link
Copy Markdown
Reviewer's guide (collapsed on small PRs)

Reviewer's Guide

Adjust CI-related configuration to auto-approve Dependabot PRs and group certain dependency updates for GitHub Actions and pre-commit into single PRs.

File-Level Changes

Change Details Files
Enable automatic approval of PRs opened by Dependabot.
  • Extend auto-me-bot PR configuration to include an autoApprove section
  • Restrict auto-approval to PRs authored by the dependabot user
.github/auto-me-bot.yml
Group GitHub Actions and pre-commit dependency updates into consolidated Dependabot PRs.
  • Add a gh-actions group for GitHub Actions dependencies with a wildcard pattern
  • Add a pre-commit group for pre-commit dependencies with a wildcard pattern
  • Keep existing weekly schedule and commit message prefix configuration unchanged
.github/dependabot.yml

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

@snyk-io

snyk-io Bot commented Aug 23, 2026

Copy link
Copy Markdown
Contributor

Snyk checks have passed. No issues have been found so far.

Status Scan Engine Critical High Medium Low Total (0)
Open Source Security 0 0 0 0 0 issues

💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse.

@TomerFi
TomerFi merged commit a7d7133 into dev Aug 23, 2026
7 of 8 checks passed
@TomerFi
TomerFi deleted the chore/dependabot-fix branch August 23, 2026 16:13
@coderabbitai

coderabbitai Bot commented Aug 23, 2026

Copy link
Copy Markdown

Review Change Stack

Caution

Review failed

The pull request is closed.

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: a5e64fba-0623-4381-842b-37d3ade0c411

📥 Commits

Reviewing files that changed from the base of the PR and between 284c60b and 7f46657.

📒 Files selected for processing (2)
  • .github/auto-me-bot.yml
  • .github/dependabot.yml

Walkthrough

The repository configuration now enables automatic approval for Dependabot pull requests and groups Dependabot updates for GitHub Actions and pre-commit dependencies.

Changes

Dependabot automation

Layer / File(s) Summary
Dependabot approval configuration
.github/auto-me-bot.yml
Auto ME Bot permits automatic approval for pull requests from dependabot.
Dependabot update grouping
.github/dependabot.yml
Dependabot groups all GitHub Actions dependencies and all pre-commit dependencies into separate update groups.

Suggested reviewers: dmatik, yogevbokobza

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch chore/dependabot-fix

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.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitai
coderabbitai Bot requested review from YogevBokobza and dmatik August 23, 2026 16:13
@codecov

codecov Bot commented Aug 23, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 96.07%. Comparing base (284c60b) to head (7f46657).
⚠️ Report is 1 commits behind head on dev.

Additional details and impacted files
@@           Coverage Diff           @@
##              dev    #1067   +/-   ##
=======================================
  Coverage   96.07%   96.07%           
=======================================
  Files           1        1           
  Lines         331      331           
=======================================
  Hits          318      318           
  Misses         13       13           

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@sourcery-ai sourcery-ai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Hey - I've found 1 issue

Prompt for AI Agents
Please address the comments from this code review:

## Individual Comments

### Comment 1
<location path=".github/auto-me-bot.yml" line_range="7" />
<code_context>
   conventionalTitle:
   tasksList:
+  autoApprove:
+    users: ["dependabot"]
</code_context>
<issue_to_address>
**issue (bug_risk):** Dependabot pull requests are authored by the GitHub account `dependabot[bot]`, but the configuration matches only the username `dependabot`; auto-me-bot therefore does not auto-approve those pull requests.

**Triggers:** When a Dependabot pull request is opened.

**Suggested fix:** Change the entry to `dependabot[bot]` (or the exact author identifier expected by auto-me-bot).
</issue_to_address>

Sourcery assessment

Needs a human reviewer. 1 finding to address first, and this changes the repository's approval policy so every Dependabot PR is automatically approved, including grouped GitHub Actions updates. If that trust decision is wrong or a dependency update is compromised, the approval can enable a merge before the configuration is reverted; reverting does not undo any resulting dependency or workflow changes.

Blocking findings: .github/auto-me-bot.yml:7


Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

Comment thread .github/auto-me-bot.yml
conventionalTitle:
tasksList:
autoApprove:
users: ["dependabot"]

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

issue (bug_risk): Dependabot pull requests are authored by the GitHub account dependabot[bot], but the configuration matches only the username dependabot; auto-me-bot therefore does not auto-approve those pull requests.

Triggers: When a Dependabot pull request is opened.

Suggested fix: Change the entry to dependabot[bot] (or the exact author identifier expected by auto-me-bot).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant