ai-commit-cli 0.4.0

A CLI that writes your git commit messages for you with AI
name: Merge

on:
  pull_request:

permissions:
  pull-requests: write

jobs:
  merge:
    if: |-
      github.event.pull_request.user.login == 'dependabot[bot]' ||
      github.event.pull_request.user.login == 'pre-commit-ci[bot]'
    runs-on: ubuntu-latest
    steps:
      - name: Enable auto-merge
        run: gh pr merge ${{ github.event.pull_request.html_url }} --auto --squash
        env:
          GH_TOKEN: ${{ github.token }}