Daily runs #16
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: Daily runs | |
on: | |
schedule: | |
- cron: '0 8 * * 1' # 8 am on mondays | |
push: | |
paths: | |
- '.github/workflows/weekly.yml' | |
jobs: | |
crispy-beef-check: | |
name: "Check Clausiusbar for Cripy Beef" | |
runs-on: ubuntu-latest | |
env: | |
GOOGLE_TOKEN: ${{ secrets.GOOGLE_TOKEN }} | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v3 | |
- uses: mamba-org/setup-micromamba@875557da4ee020f18df03b8910a42203fbf02da1 | |
with: | |
environment-file: environment.yml | |
init-shell: bash | |
- name: Run beefscripy | |
shell: bash -el {0} | |
run: python crispybeefbot.py |