# action-eslint-fix **Repository Path**: mirrors_getsentry/action-eslint-fix ## Basic Information - **Project Name**: action-eslint-fix - **Description**: GitHub Action to run `eslint` with `--fix` option and commit fixes - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-02-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # getsentry/action-eslint-fix Runs [eslint](https://eslint.org/) (only on changed files in a PR), with `--fix` and commits the changes to the PR. ## Installation Add the following to your workflow config ```yaml - name: Use current action uses: getsentry/action-eslint-fix@v1 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} ``` If you would prefer this action to not modify files for you, use the following config: ```yaml - name: Use current action uses: getsentry/action-eslint-fix@v1 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} dry: true ```