deps: bump @commitlint/config-conventional from 19.2.2 to 19.5.0 #23
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto-Merge Dependabot Updates | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
auto-merge: | |
if: github.actor == 'dependabot[bot]' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Ensure PR is from Dependabot | |
if: github.actor == 'dependabot[bot]' | |
run: echo "Dependabot PR detected, continuing." | |
- name: Install dependencies | |
run: npm install | |
- name: Run prettier | |
run: npm run format:write | |
- name: Auto-merge Dependabot updates | |
uses: pascalgn/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
merge-method: squash | |
branch: main | |
skip-ci: true | |
commit_message: | | |
{prefix}: {dep} ({version}) | |
This PR was automatically merged by GitHub Actions. |