Skip to content

CI Cron

CI Cron #1557

Workflow file for this run

name: CI Cron
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
permissions:
contents: write
jobs:
build:
name: Build All
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: 3.8
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run build
run: make build-all
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: '[skip ci] Updated schemas'
commit_user_name: Abhimanyu Saharan
commit_user_email: [email protected]
commit_author: Abhimanyu Saharan <[email protected]>