From 0424da2aaa0271371913c33d9a13019915ffb469 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bauer?= Date: Mon, 25 Mar 2024 16:51:36 +0100 Subject: [PATCH] add dependabot automerge for minor changes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: André Bauer --- .github/auto-merge.yml | 3 +++ .github/workflows/dependabot-auto-merge.yaml | 14 ++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 .github/auto-merge.yml create mode 100644 .github/workflows/dependabot-auto-merge.yaml diff --git a/.github/auto-merge.yml b/.github/auto-merge.yml new file mode 100644 index 0000000..64ecc2d --- /dev/null +++ b/.github/auto-merge.yml @@ -0,0 +1,3 @@ +- match: + dependency_type: all + update_type: "semver:minor" diff --git a/.github/workflows/dependabot-auto-merge.yaml b/.github/workflows/dependabot-auto-merge.yaml new file mode 100644 index 0000000..c0fd636 --- /dev/null +++ b/.github/workflows/dependabot-auto-merge.yaml @@ -0,0 +1,14 @@ +name: dependabot-auto-merge + +on: + pull_request: + +jobs: + auto-merge: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v2 + - uses: ahmadnassri/action-dependabot-auto-merge@v2 + with: + github-token: ${{ secrets.DEPENDABOT_AUTOMERGE }} + target: minor