Skip to content

cmoscardi is updating latest bikereg info #6

cmoscardi is updating latest bikereg info

cmoscardi is updating latest bikereg info #6

name: get-bikereg-latest
run-name: ${{ github.actor }} is updating latest bikereg info
on: [push]
jobs:
get-bikereg-latest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install pandas and requests
run: pip install pandas requests
- name: update events.json
run: python app.py
- name: stage changed files
run: git add events.json
- name: set username
run: git config --global user.name "Github action"
run: git config --global user.email "no-reply@github.com"

Check failure on line 17 in .github/workflows/get-bikereg-latest.yaml

View workflow run for this annotation

GitHub Actions / get-bikereg-latest

Invalid workflow file

The workflow is not valid. .github/workflows/get-bikereg-latest.yaml (Line: 17, Col: 9): 'run' is already defined
- name: commit changes
run: git commit -m 'sync events.json'
- name: push changes
run: git push origin main