Bump eslint from 9.8.0 to 9.9.0 #212
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: Dependabot Bot | |
on: | |
pull_request: | |
branches: [master] | |
concurrency: dependabot-${{ github.ref }} | |
jobs: | |
dependabot-bot: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: P5-wrapper/setup-action@v1.0.6 | |
- name: Run format if the PR is from the Dependabot Bot | |
if: github.actor == 'dependabot[bot]' | |
run: pnpm format | |
shell: bash | |
- name: Commit any formatting changes | |
if: github.actor == 'dependabot[bot]' | |
uses: stefanzweifel/git-auto-commit-action@v5.0.0 | |
with: | |
commit_message: Apply formatting updates | |
branch: ${{ github.ref_name }} | |
token: ${{ secrets.GH_TOKEN }} |