Skip to content

fix: fix repeat of file #88

fix: fix repeat of file

fix: fix repeat of file #88

Workflow file for this run

name: auto
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; fi
- name: Update dir
run: python update.py
- name: Commit Updated
uses: stefanzweifel/git-auto-commit-action@v4