Auto update #702
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Auto update | |
on: | |
schedule: | |
- cron: '5 3 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v3 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install requests | |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
- name: Auto Update | |
run: | | |
sh auto_run.sh ${{ secrets.GITHUB_TOKEN }} | |
- name: Commit | |
run: | | |
git config --global user.email [email protected] | |
git config --global user.name yuxiaopeng | |
git add . | |
git commit -m"action:`date`" | |
git push | |
# - name: Push changes | |
# uses: ad-m/github-push-action@master | |
# with: | |
# github_token: ${{ secrets.GITHUB_TOKEN }} |