From a068fe39972b9f50b4551c4b5418b25d716445c3 Mon Sep 17 00:00:00 2001 From: Arnaud Mimart <33665250+amimart@users.noreply.github.com> Date: Tue, 10 May 2022 10:40:52 +0200 Subject: [PATCH] ci: auto merge dependabot PR --- .github/workflows/auto-merge.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/auto-merge.yml diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml new file mode 100644 index 0000000..810da7f --- /dev/null +++ b/.github/workflows/auto-merge.yml @@ -0,0 +1,15 @@ +name: Auto merge + +on: + pull_request: + +jobs: + auto-merge-dependabot: + runs-on: ubuntu-20.04 + if: github.actor == 'dependabot[bot]' + steps: + - name: Auto merge PR + uses: ahmadnassri/action-dependabot-auto-merge@v2 + with: + target: minor + github-token: ${{ secrets.OKP4_TOKEN }}