From 7fbb5eb0d1ad735c99684fb7156edf6bf707bc2f Mon Sep 17 00:00:00 2001 From: viral32111 <19510403+viral32111@users.noreply.github.com> Date: Wed, 6 Dec 2023 18:38:37 +0000 Subject: [PATCH] Auto-merge workflow was not added... --- .github/workflows/automerge.yml | 34 +++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/automerge.yml diff --git a/.github/workflows/automerge.yml b/.github/workflows/automerge.yml new file mode 100644 index 0000000..39ccdd8 --- /dev/null +++ b/.github/workflows/automerge.yml @@ -0,0 +1,34 @@ +name: Dependabot Auto-Merge + +on: + pull_request: + types: + - opened + - synchronize + - reopened + - ready_for_review + workflow_dispatch: + +jobs: + dependabot-auto-merge: + name: Dependabot Auto-Merge + runs-on: ubuntu-latest + if: github.actor == 'dependabot[bot]' + permissions: + contents: write + pull-requests: write + issues: write + steps: + - name: Clone repository + uses: actions/checkout@v3 + + - name: Fetch Dependabot metadata + id: metadata + uses: dependabot/fetch-metadata@v1 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + + - name: Enable auto-merge for pull request + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: gh pr merge --auto --rebase ${{ github.event.pull_request.html_url }}