Add pins back in. #4
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' # 8am on mondays | |
push: | |
paths: | |
- '.github/workflows/weekly.yml' | |
jobs: | |
crispy-beef-check: | |
name: "Check Clausiusbar for Cripy Beef" | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v3 | |
- uses: mamba-org/setup-micromamba@875557da4ee020f18df03b8910a42203fbf02da1 | |
with: | |
environment-file: environment.yml | |
- name: Run beefscripy | |
run: python crispybeefbot.py |