From c0fecb76d77b142889fa2f04df517f2254d77fe4 Mon Sep 17 00:00:00 2001 From: Nitrrine <43351072+Nitrrine@users.noreply.github.com> Date: Mon, 9 Dec 2024 20:44:43 +0500 Subject: [PATCH] Create automerge_dependabot.yml --- .github/workflows/automerge_dependabot.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/automerge_dependabot.yml 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