Skip to content

Merge remote-tracking branch 'origin/develop' into develop #187

Merge remote-tracking branch 'origin/develop' into develop

Merge remote-tracking branch 'origin/develop' into develop #187

Workflow file for this run

name: "Let me lint:fix that for you"
on: [push]
jobs:
LMLFTFY:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Install Linter
run: |
npm ci --ignore-scripts
- name: Fix everything which can be fixed
run: 'npm run lint:fix'
- uses: stefanzweifel/[email protected]
with:
commit_message: "Auto-fix linting issues"
# Optional name of the branch the commit should be pushed to
# Required if Action is used in Workflow listening to the `pull_request` event
branch: ${{ github.head_ref }}
# Optional git params
commit_options: '--signoff'
# Optional commit user and author settings
commit_user_name: JuiceShopBot
commit_user_email: [email protected]
commit_author: JuiceShopBot <[email protected]>