Weekly Release #8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Weekly Release | |
| on: | |
| schedule: | |
| - cron: '0 0 * * 0' # Every Sunday at 00:00 | |
| workflow_dispatch: # Allow manual trigger for testing | |
| jobs: | |
| check_relevance: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| relevance: ${{ steps.check.outputs.relevance }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.14' | |
| - name: Check for relevant changes | |
| id: check | |
| run: python .github/scripts/check_relevance.py | |
| trigger_release: | |
| needs: check_relevance | |
| if: needs.check_relevance.outputs.relevance == 'true' | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| actions: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Trigger Release Workflow | |
| run: | | |
| gh workflow run release.yml -f release_type=development | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |