Skip to content

Bump com.charleskorn.kaml:kaml from 0.59.0 to 0.60.0 #54

Bump com.charleskorn.kaml:kaml from 0.59.0 to 0.60.0

Bump com.charleskorn.kaml:kaml from 0.59.0 to 0.60.0 #54

# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions#enable-auto-merge-on-a-pull-request
name: Dependabot auto-merge
on:
pull_request:
types: [ opened, synchronize, reopened, labeled ]
permissions:
contents: write
pull-requests: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ contains(github.event.pull_request.labels.*.name, 'dependencies') }}
steps:
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --rebase ${{ github.event.pull_request.html_url }}
env:
GITHUB_TOKEN: ${{ github.token }}