Skip to content

scripts

scripts #1150

Workflow file for this run

name: scripts
on:
push:
branches:
- master
schedule:
- cron: "0 */72 * * *" # every three days
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip"
- run: pip install -r requirements.txt
- run: python ./scripts/inbox.py
env:
TRELLO_TOKEN: ${{ secrets.TRELLO_TOKEN }}
TRELLO_KEY: ${{ secrets.TRELLO_KEY }}
TRELLO_BOARD: ${{ secrets.TRELLO_BOARD }}