-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ee95aec
commit 096861a
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,16 +15,16 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
ref: ${{ github.head_ref }} | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.12" | ||
- run: pip install -r linters/requirements.txt | ||
- run: python linters/autoformat-csv.py | ||
- run: python linters/lint-csv.py | ||
- run: | | ||
git config user.name 'Jon Banafato' | ||
git config user.email '[email protected]' | ||
git diff --quiet || git commit -am "Autoformat CSV" | ||
git push | ||
- uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
commit_message: Autoformat CSV | ||
commit_user_name: Jon Banafato | ||
commit_user_email: [email protected] | ||
commit_author: Jon Banafato <[email protected]> |