Bump org.jetbrains:annotations from 24.0.1 to 24.1.0 #78
Workflow file for this run
This file contains 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: Auto-merge Dependabot PRs | |
on: | |
pull_request_target | |
jobs: | |
auto-approve: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Wait for build success | |
uses: fountainhead/[email protected] | |
id: wait-for-build | |
if: github.actor == 'dependabot[bot]' | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
checkName: 'Build Java 17' | |
ref: ${{ github.event.pull_request.head.sha || github.sha }} | |
- name: autoapprove | |
if: github.actor == 'dependabot[bot]' && steps.wait-for-build.outputs.conclusion == 'success' | |
uses: hmarr/[email protected] | |
with: | |
github-token: "${{ secrets.GITHUB_TOKEN }}" | |
- name: automerge | |
if: github.actor == 'dependabot[bot]' && steps.wait-for-build.outputs.conclusion == 'success' | |
uses: "pascalgn/[email protected]" | |
env: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
MERGE_LABELS: "dependencies" | |
MERGE_METHOD: "squash" |