Skip to content

Commit

Permalink
feat: add daily release check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dsp-ant committed Jan 13, 2025
1 parent 26d3dd4 commit 6d36b5a
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/daily-release-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Daily Release Check

on:
schedule:
- cron: '0 0 * * *' # Run at midnight UTC daily
workflow_dispatch: # Allow manual triggers

jobs:
check-releases:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Need full history for git log

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'

- name: Install dependencies
run: |
python -m pip install semver PyGithub rich toml click
- name: Run release check
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: python scripts/weekly-release.py --dry-run

0 comments on commit 6d36b5a

Please sign in to comment.