diff --git a/.github/workflows/automerge_dependabot.yml b/.github/workflows/automerge_dependabot.yml new file mode 100644 index 0000000..44d0001 --- /dev/null +++ b/.github/workflows/automerge_dependabot.yml @@ -0,0 +1,21 @@ +name: Automatically mege PRs by Dependabot +on: + push: + branches: + - main + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + + automerge: + needs: build + runs-on: ubuntu-latest + + permissions: + pull-requests: write + contents: write + + steps: + - uses: fastify/github-action-merge-dependabot@v3