Skip to content

chore: add husky and commitlint for improved commit message linting #95

chore: add husky and commitlint for improved commit message linting

chore: add husky and commitlint for improved commit message linting #95

Workflow file for this run

name: Dependabot Auto-Approve
on:
pull_request:
types: [opened, synchronize]
permissions:
pull-requests: write
contents: write
checks: read
statuses: read
jobs:
auto-approve:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Auto-approve Dependabot PRs
uses: hmarr/auto-approve-action@v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
auto-merge:
runs-on: ubuntu-latest
needs: auto-approve
if: github.actor == 'dependabot[bot]'
steps:
- name: Auto-merge Dependabot PRs
uses: pascalgn/merge-action@v0.15.6
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
merge_method: squash