Upstream Version Check #62
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: Upstream Version Check | |
| on: | |
| schedule: | |
| # Run daily at 08:00 UTC. | |
| - cron: "0 8 * * *" | |
| workflow_dispatch: | |
| inputs: | |
| dry_run: | |
| description: "Preview changes without creating an issue" | |
| type: boolean | |
| default: false | |
| permissions: | |
| issues: write | |
| jobs: | |
| check-upstream: | |
| name: Check Upstream Releases | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install yq | |
| uses: mikefarah/yq@v4 | |
| - name: Run upstream check | |
| run: ci/scripts/upstream-check.sh | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| DRY_RUN: ${{ inputs.dry_run || 'false' }} |