Skip to content

Commit

Permalink
add .kodiak.toml to allow for automatic merging of minor dependabot PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
ribeirojose committed Apr 30, 2024
1 parent cbce6fa commit 5297057
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .kodiak.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# .kodiak.toml
# Minimal config. version is the only required field.
version = 1

[merge.automerge_dependencies]
# auto merge all PRs opened by "dependabot" that are "minor" or "patch" version upgrades. "major" version upgrades will be ignored.
versions = ["minor", "patch"]
usernames = ["dependabot"]

# if using `update.always`, add dependabot to `update.ignore_usernames` to allow
# dependabot to update and close stale dependency upgrades.
[update]
ignored_usernames = ["dependabot"]

0 comments on commit 5297057

Please sign in to comment.