Skip to content

Merge pull request #166 from petrichor98765/merge-json #92

Merge pull request #166 from petrichor98765/merge-json

Merge pull request #166 from petrichor98765/merge-json #92

Workflow file for this run

name: unify
on:
push:
branches:
- main
paths:
- 'contributors/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v2
- name: setup python
uses: actions/setup-python@v2
with:
python-version: '3.7.X'
- name: execute py script
run: python "scripts/unify.py"
- name: commit files
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add -A
git commit -m "chore: update contributors data" -a
- name: push changes
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: main