Skip to content

Push by capzDE is sorting station mappings.json #33

Push by capzDE is sorting station mappings.json

Push by capzDE is sorting station mappings.json #33

Workflow file for this run

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 }}