Update lint.yml

This commit is contained in:
aiden vigue 2021-06-10 09:10:02 -07:00 committed by GitHub
parent d46528102f
commit d9880bde96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 11 deletions

View File

@ -13,18 +13,16 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2.3.4
- name: Run SwiftLint - name: Run SwiftLint
run: swiftlint --fix run: swiftlint --fix
- name: Commit changes - name: Commit new changes to the repo
uses: EndBug/add-and-commit@v7 # You can change this to use a specific version run: |
with: git config user.name jellyfin-bot
add: '.' git config user.email team@jellyfin.org
author_name: acvigue git pull
author_email: acvigue@me.com git add .
default_author: user_info git commit -m "auto lint" || echo
message: 'Auto lint' git push
pull_strategy: '--no-rebase'
push: true