Update lint.yml
This commit is contained in:
parent
d46528102f
commit
d9880bde96
|
@ -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
|
|
||||||
|
|
Loading…
Reference in New Issue