ahmadnassri / action-dependabot-auto-merge

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

Not merging depenednet bot pull request even though there isn't any errors #54

Closed irohitb closed 3 years ago

irohitb commented 3 years ago

I was trying to implement action-dependabot-auto-merge github action to automatically merge pull request in github for one of my repo

This is my workflow file

name: auto-merge

on:
  pull_request:

jobs:
  auto-merge:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: ahmadnassri/action-dependabot-auto-merge@v2
        with:
          github-token: ${{ secrets.BLENDTALE_GITHUB_BOT }}

But for some reason, it isn't merging in master. git shows that action ran successfully.

Any idea what I might be doing wrong?

ahmadnassri commented 3 years ago

you didn't provide a config file, so the default config applied, in this case the change was a major change (husky from 4.3.8 to 5.1.0) so as per the default config, it will require manual merging ...

the details are printed in the log output of the action.

you can add a config file to change this behaviour

ahmadnassri commented 3 years ago

I'm closing this issue, unless you have any more details to add, hopefully the config solved your problem