Skip to content

Add job to build Overview Decks on first day of the month #1

Add job to build Overview Decks on first day of the month

Add job to build Overview Decks on first day of the month #1

Workflow file for this run

name: Update Data Sources
on:
schedule:
- cron: '0 0 1 * *'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |

Check failure on line 17 in .github/workflows/build-decks.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-decks.yml

Invalid workflow file

You have an error in your yaml syntax on line 17
python -m pip install --upgrade pip
pip install -r overview_deck/requirements.txt
- name: Run build
run: |
python overview_deck/build.py
env:
GITHUB_TOKEN: ${{ secrets.PAT }}
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.PAT }}
branch-suffix: timestamp
path: .
title: Update Overview Decks
labels: automerge
commit-message: Update Data Sources
signoff: true