Merge pull request #648 from tighten/dependabot/npm_and_yarn/vite-6.4.1 #236
This file contains hidden or 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: Run Duster Fix | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| duster: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: "Duster Fix" | |
| uses: tighten/duster-action@v2 | |
| with: | |
| args: fix | |
| - uses: stefanzweifel/git-auto-commit-action@v4 | |
| id: auto_commit_action | |
| with: | |
| commit_message: Dusting | |
| commit_user_name: GitHub Action | |
| commit_user_email: [email protected] | |
| - name: Ignore Duster commit in git blame | |
| if: steps.auto_commit_action.outputs.changes_detected == 'true' | |
| run: echo ${{ steps.auto_commit_action.outputs.commit_hash }} >> .git-blame-ignore-revs | |
| - uses: stefanzweifel/git-auto-commit-action@v4 | |
| with: | |
| commit_message: Ignore Dusting commit in git blame | |
| commit_user_name: GitHub Action | |
| commit_user_email: [email protected] |