Bump org.junit.jupiter:junit-jupiter from 6.1.1 to 6.1.2 in the gradle-minor-and-patch group #15
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Dependabot auto-merge | |
| # Enables auto-merge for every Dependabot PR, including major version bumps. | |
| # Auto-merge only completes once the branch's required status checks pass, so | |
| # a PR is never merged unless CI is green. No approval step is needed: the | |
| # branch ruleset requires zero approving reviews, and GITHUB_TOKEN is not | |
| # permitted to approve pull requests anyway. | |
| on: pull_request | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| auto-merge: | |
| runs-on: ubuntu-latest | |
| if: github.actor == 'dependabot[bot]' | |
| steps: | |
| - name: Enable auto-merge | |
| run: gh pr merge --auto --squash "$PR_URL" | |
| env: | |
| PR_URL: ${{ github.event.pull_request.html_url }} | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |