Generate reports #23278
This file contains 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: Generate reports | |
on: | |
# Run if files that could be relevant change. | |
push: | |
branches: | |
- master | |
paths: | |
- flake.* | |
- .github/workflows/gen-report.yml | |
- .github/workflows/gen-reports.yml | |
# Run hourly. | |
schedule: | |
- cron: '0 */1 * * *' | |
jobs: | |
generate-reports: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- project: nixpkgs | |
jobset: trunk | |
- project: nixpkgs | |
jobset: nixpkgs-24.05-darwin | |
- project: nixpkgs | |
jobset: haskell-updates | |
- project: nixpkgs | |
jobset: python-updates | |
- project: nixpkgs | |
jobset: staging-next | |
- project: nixpkgs | |
jobset: staging-next-24.05 | |
- project: nixos | |
jobset: trunk-combined | |
- project: nixos | |
jobset: release-24.05 | |
name: ${{ matrix.project }}:${{ matrix.jobset }} | |
uses: ./.github/workflows/gen-report.yml | |
with: | |
project: ${{ matrix.project }} | |
jobset: ${{ matrix.jobset }} |