Push by capzDE is sorting station mappings.json #23
Workflow file for this run
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
name: data-sorter | |
run-name: Push by ${{ github.actor }} is sorting station mappings.json | |
on: | |
push: | |
branches: | |
- "*" | |
permissions: write-all | |
jobs: | |
consolidate-and-sort-data: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repo content | |
uses: actions/checkout@v2 # checkout the repository content | |
- name: setup python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" # install the python version needed | |
- name: execute py script # run main.py | |
working-directory: . | |
run: python .github/workflows/main.py | |
- name: commit files | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add -A | |
git diff-index --quiet HEAD || (git commit -a -m "Consolidated and formatted data" --allow-empty) | |
- name: push changes | |
uses: ad-m/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} |