ahmadnassri / action-dependabot-auto-merge

Automatically merge Dependabot PRs when version comparison is within range
MIT License
342 stars 48 forks source link

Rebase and merge #8

Closed ttshivers closed 4 years ago

ttshivers commented 4 years ago

Is there a way to get dependabot to use the "rebase and merge" strategy when auto merging so that merge commit messages aren't created? I can't seem to find a config option in dependabot for this.

ahmadnassri commented 4 years ago

you can either modify your repo setting to only allow that strategy and dependabot will follow, or you can pass the following in your workflow file:

with:
  command: squash and merge
ttshivers commented 4 years ago

Thank you