Skip to content

Bump gradle/wrapper-validation-action from 3.3.1 to 3.3.2 #178

Bump gradle/wrapper-validation-action from 3.3.1 to 3.3.2

Bump gradle/wrapper-validation-action from 3.3.1 to 3.3.2 #178

# A Workflow for auto-approving and auto-merging dependency update PRs raised by Dependabot
name: Dependabot
on:
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
auto-merge:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
permissions:
contents: write
pull-requests: write
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@0fb21704c18a42ce5aa8d720ea4b912f5e6babef # v2.0.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Approve PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
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 --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}