Verify upstream sources #176
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: Verify upstream sources | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| package: | |
| description: Direct-upstream package name; leave empty for all configured packages | |
| required: false | |
| schedule: | |
| - cron: '13,43 * * * *' | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: source-pipeline | |
| cancel-in-progress: true | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 | |
| - name: Fetch, verify, and report | |
| env: | |
| PACKAGE: ${{ inputs.package }} | |
| run: | | |
| if [ -n "$PACKAGE" ]; then | |
| python3 tools/source_pipeline.py "$PACKAGE" | |
| else | |
| python3 tools/source_pipeline.py | |
| fi | |
| - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7 | |
| if: always() | |
| with: | |
| name: source-pipeline-report | |
| path: reports/source-pipeline | |
| if-no-files-found: ignore |