From 2e7aba3a43c52b68c3daeba70049879ccdf67bf3 Mon Sep 17 00:00:00 2001 From: Matthias Diester Date: Fri, 13 Dec 2024 11:17:19 +0100 Subject: [PATCH] Enable Dependabot for automatic updates Update GitHub Action versions. Update Go module versions. --- .github/dependabot.yml | 16 ++++++++++++++++ .github/workflows/auto-merge.yml | 27 +++++++++++++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/auto-merge.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..a5dac12 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,16 @@ +--- +version: 2 +updates: +- package-ecosystem: gomod + directory: / + schedule: + interval: daily + open-pull-requests-limit: 10 + allow: + - dependency-type: "all" + target-branch: main +- package-ecosystem: github-actions + directory: / + schedule: + interval: weekly + open-pull-requests-limit: 10 diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml new file mode 100644 index 0000000..73e812a --- /dev/null +++ b/.github/workflows/auto-merge.yml @@ -0,0 +1,27 @@ +--- +name: Dependabot auto-merge + +on: pull_request + +permissions: + contents: write + pull-requests: write + +jobs: + dependabot: + runs-on: ubuntu-latest + if: ${{ github.actor == 'dependabot[bot]' }} + steps: + - name: Dependabot metadata + id: metadata + uses: dependabot/fetch-metadata@v2.2.0 + with: + github-token: "${{ secrets.GITHUB_TOKEN }}" + + - name: Enable auto-merge for Dependabot PRs + env: + PR_URL: ${{github.event.pull_request.html_url}} + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + run: | + gh pr review --approve "$PR_URL" + gh pr merge --auto --merge "$PR_URL"