Skip to content

Bump org.junit:junit-bom from 5.11.3 to 5.11.4 #36

Bump org.junit:junit-bom from 5.11.3 to 5.11.4

Bump org.junit:junit-bom from 5.11.3 to 5.11.4 #36

Workflow file for this run

name: Handle PR
on:
pull_request:
branches:
- main
jobs:
verify:
runs-on: ubuntu-latest
permissions:
checks: write
pull-requests: write
contents: write
steps:
- uses: actions/checkout@v4
- name: Enable auto merge for Dependabot PRs
if: github.event.pull_request.user.login == 'dependabot[bot]'
run: |
gh pr review --approve "${{ github.event.pull_request.html_url }}"
gh pr merge --auto --rebase --delete-branch "${{ github.event.pull_request.html_url }}"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}