Skip to content

Update from GTFS and RTTI #170

Update from GTFS and RTTI

Update from GTFS and RTTI #170

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Update from GTFS and RTTI
on:
schedule:
- cron: '35 4 * * 5'
workflow_dispatch:
jobs:
commit_changes:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Configure git committer
run: |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
- name: Download and detect changes
env:
TL_API_KEY: ${{ secrets.TL_API_KEY }}
run: |
python workflow.py changes
python workflow.py git
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}