Goby/.github/workflows/goby.yml

37 lines
893 B
YAML
Raw Normal View History

2022-11-24 22:39:58 -08:00
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: goby
on:
schedule:
2022-12-02 22:33:24 -08:00
- cron: '0 */5 * * *'
2022-11-24 22:39:58 -08:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
pip install requests
- name: goby
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
run: |
python run.py
- name: Commit and push if changed
run: |
git diff
2022-11-25 00:28:53 -08:00
git config --global user.email "test"
git config --global user.name "test"
2022-11-24 22:39:58 -08:00
git add .
2022-11-25 00:28:53 -08:00
git commit --allow-empty -m "auto"
2022-11-24 22:39:58 -08:00
git push