Skip to content

Commit

Permalink
Update schools_updater.yml
Browse files Browse the repository at this point in the history
Fix failing CSV push
  • Loading branch information
erinosher authored Nov 12, 2024
1 parent 829f038 commit c352fee
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/schools_updater.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@ jobs:
jq -r '.[].name' data.json >> schools.csv
- name: Commit and push CSV file
run: |
# Configure git
git config --local user.name "github-actions[bot]"
git config --local user.email "github-actions[bot]@users.noreply.github.com"
# Commit and push changes
git add schools.csv
git commit -m "Update schools CSV file from API data [skip ci]"
git push
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Update schools CSV file from API data [skip ci]
file_pattern: schools.csv
commit_user_name: github-actions[bot]
commit_user_email: github-actions[bot]@users.noreply.github.com
commit_author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
skip_fetch: true
skip_checkout: true

0 comments on commit c352fee

Please sign in to comment.