Merge pull request #11 from stats4sd/add_odk_form #9
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
on: | |
push: | |
paths: | |
- 'odk/TAPE - WIP.xlsx' | |
jobs: | |
excel_to_csv_files: | |
runs-on: ubuntu-latest | |
name: Split Excel file into multiple CSV files | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: Split Step | |
id: excel_to_csv | |
uses: dave-mills/[email protected] | |
with: | |
excel_path: 'odk/TAPE - WIP.xlsx' | |
- name: Commit and push changes | |
run: | | |
git config --global user.name "Auto Commit Bot" | |
git config --global user.email "[email protected]" | |
git add -A | |
git commit -m "update csv files based on changes to Excel" | |
git push |