Skip to content

⬆️ Bump io.kotest:kotest-runner-junit5-jvm from 5.6.2 to 5.7.2 #43

⬆️ Bump io.kotest:kotest-runner-junit5-jvm from 5.6.2 to 5.7.2

⬆️ Bump io.kotest:kotest-runner-junit5-jvm from 5.6.2 to 5.7.2 #43

# from https://github.com/dependabot/fetch-metadata#enabling-auto-merge
name: Enable auto-merge for Dependabot PRs
on: pull_request_target
permissions:
pull-requests: write
contents: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: dependabot-metadata
uses: dependabot/fetch-metadata@v1
- name: Enable auto-merge
if: ${{steps.dependabot-metadata.outputs.update-type == 'version-update:semver-patch' || steps.dependabot-metadata.outputs.update-type == 'version-update:semver-minor'}}
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}