diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml new file mode 100644 index 0000000..1d597ee --- /dev/null +++ b/.github/workflows/auto-merge.yml @@ -0,0 +1,18 @@ +name: Auto Merge + +on: + pull_request_target: + +jobs: + auto-merge: + name: Merge Automatically + runs-on: ubuntu-20.04 + if: github.actor == 'dependabot[bot]' + steps: + - name: Checkout + uses: actions/checkout@v2.3.5 + + - name: Prepare Auto Merge + uses: ahmadnassri/action-dependabot-auto-merge@v2 + with: + github-token: ${{ secrets.DEPENDABOT_AUTOMERGE_TOKEN }} \ No newline at end of file