Skip to content

Commit

Permalink
Add job to build Overview Decks on first day of the month
Browse files Browse the repository at this point in the history
Signed-off-by: John Mertic <[email protected]>
  • Loading branch information
jmertic authored Feb 12, 2024
1 parent 09e1f6f commit dc690d4
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/build-decks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
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: |
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

0 comments on commit dc690d4

Please sign in to comment.