action-eslint-fix
action-eslint-fix copied to clipboard
Action doesn't commit fixes
trafficstars
Environment
ubuntu-latest
How do you use Sentry? No Sentry SaaS (sentry.io) or self-hosted/on-premise (which version?)
Which SDK and version? e.g: JavaScript 5.11.1, .NET 1.2.0
Steps to Reproduce
- Prepare a small Vue-Typscript project scaffold. Mine's here
- Create a few javascript functions. Put extra semicolons in some code to trigger an automatic fix by eslint.
- Create a github action like below. Mine's here:
lintFix:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: npm install
- name: Use current action
uses: getsentry/action-eslint-fix@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expected Result
"style(): Auto eslint fix" to appear in the commit history for my PR
Actual Result
None
What actually happened. Maybe a screenshot/recording? Maybe some logs? No error. Everything went smoothly in the logs