Skip to content

scripts

scripts #1496

Workflow file for this run

name: scripts
on:
push:
branches:
- main
schedule:
- cron: "0 0 */3 * *" # every three days is enough
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version-file: pyproject.toml
cache: poetry
- name: Install Python dependencies
run: poetry install
- name: Process Inbox
run: poetry run film2trello inbox
env:
TRELLO_TOKEN: ${{ secrets.TRELLO_TOKEN }}
TRELLO_KEY: ${{ secrets.TRELLO_KEY }}
TRELLO_BOARD: ${{ secrets.TRELLO_BOARD }}