Skip to content

Another replaced CAS registry number #21

Another replaced CAS registry number

Another replaced CAS registry number #21

Workflow file for this run

name: Collate
on:
workflow_dispatch:
push:
branches:
- main
paths:
- 'data/*.tsv'
- 'data/*.csv'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
- uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
pip install tox
- name: Create local changes
run: |
tox -e collate
- name: Commit files
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git commit -m "🤖 Automatically collate data" -a
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}