Skip to content

automatic-data-update #2

automatic-data-update

automatic-data-update #2

Workflow file for this run

name: automatic-data-update
on:
schedule:
# Runs at 1 PM UTC, which is 6:30 PM IST
- cron: '*/15 * * * *'
jobs:
automatic-data-update:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install uv
uv pip install -r requirements.txt
- name: Data Refresh...
run: python leetcomp/refresh.py
- name: Parsing Data...
run: python leetcomp/parse.py
- name: Commit files
run: |
git config --global user.name github-actions
git config --global user.email github-actions@github.com
git add .
git commit -m "action: daily data refresh"
git push
- name: Create Pull Request
uses: actions/github-script@v6
with:
script: |
const { repo, owner } = context.repo;
const result = await github.rest.pulls.create({
title: 'Automatic Data Update',
owner,
repo,
head: '${{ github.ref_name }}',
base: 'main',
body: [
'Automatic LeetCode data update',
]
});