fr345 action #3143
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
name: fr345 action | |
on: | |
schedule: | |
- cron: '23 */4 * * *' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: config | |
run: | | |
git config --global user.email "<>" | |
git config --global user.name "fr345 bot" | |
- name: updating fr345 | |
run: sh ressources/ftv/py/fr345.sh | |
- name: git add | |
run: | | |
git add -A | |
ls -la | |
- name: commit & push | |
run: | | |
git pull | |
git commit -m "fr345 updated" | |
git push |