Skip to content

Bump org.apache.groovy:groovy-bom from 4.0.23 to 4.0.24 #35

Bump org.apache.groovy:groovy-bom from 4.0.23 to 4.0.24

Bump org.apache.groovy:groovy-bom from 4.0.23 to 4.0.24 #35

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 }}