Skip to content

allow non-changes

allow non-changes #2

Workflow file for this run

name: Push commit
on: push
permissions:
contents: write
jobs:
gen_io_types:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- name: Run gen_io_types
working-directory: gen_io_types
run: cargo run
- name: Commit IOTypes
run: |
git config --global user.name 'Action'
git config --global user.email '[email protected]'
git add -f src/main/java/org/frc5572/robotools/IOTypes.java
git commit -m "Generate IOTypes.java" || true
git push