Skip to content

ci: add Dependabot and auto-merge for hotdata SDK updates #1

ci: add Dependabot and auto-merge for hotdata SDK updates

ci: add Dependabot and auto-merge for hotdata SDK updates #1

name: Dependabot auto-merge
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 --squash --auto "${{ github.event.pull_request.number }}"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}