# This is a basic workflow to help you get started with Actions name: CI # Controls when the workflow will run on: schedule: - cron: '4 4 ? * MON' # Triggers the workflow on push or pull request events but only for the main branch push: branches: [ main ] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Setup Python uses: actions/setup-python@v2.3.0 - name: Run a one-line script run: python main.py - name: Commit files run: | git config --local user.email "actions@github.com" git config --local user.name "GitHub Action" git add . git commit -m "update sites" - name: Push changes uses: ad-m/github-push-action@master with: github_token: ${{ secrets.GITHUB_TOKEN }}