From 3609c90eaa302756ca2501dfd6f83fba4cd5d123 Mon Sep 17 00:00:00 2001 From: Tang Rufus Date: Fri, 6 Dec 2024 04:36:21 +0000 Subject: [PATCH] GitHub Actions: Use `typisttech/.github/.github/workflows/dependabot-auto-merge.yml@v1` --- .github/workflows/dependabot-auto-merge.yml | 25 +++++++-------------- 1 file changed, 8 insertions(+), 17 deletions(-) diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml index 8d5bc06..bf9b42b 100644 --- a/.github/workflows/dependabot-auto-merge.yml +++ b/.github/workflows/dependabot-auto-merge.yml @@ -8,23 +8,14 @@ concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }} cancel-in-progress: true -permissions: - contents: write - pull-requests: write +permissions: {} jobs: dependabot: - runs-on: ubuntu-latest - if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'typisttech/comver' - steps: - - name: Dependabot metadata - id: dependabot-metadata - uses: dependabot/fetch-metadata@v2 - with: - github-token: "${{ secrets.GITHUB_TOKEN }}" - - name: Enable auto-merge for Dependabot PRs - if: steps.dependabot-metadata.outputs.update-type != 'version-update:semver-major' - run: gh pr merge --auto --merge "$PR_URL" - env: - PR_URL: ${{github.event.pull_request.html_url}} - GH_TOKEN: ${{secrets.GITHUB_TOKEN}} + permissions: + contents: write + pull-requests: write + uses: typisttech/.github/.github/workflows/dependabot-auto-merge.yml@v1 + with: + minor: true + patch: true