Update konflux-ci digest to f534315 #1074
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
| # yamllint disable-file | |
| # <TEMPLATED FILE!> | |
| # This file comes from the templates at https://github.com/konflux-ci/task-repo-shared-ci. | |
| # Please consider sending a PR upstream instead of editing the file directly. | |
| # See the SHARED-CI.md document in this repo for more details. | |
| name: Validate PR - Trusted Artifact variants | |
| 'on': | |
| pull_request: | |
| branches: [main] | |
| merge_group: | |
| types: [checks_requested] | |
| jobs: | |
| go: | |
| name: Check Trusted Artifact variants | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Check Trusted Artifact variants | |
| id: check | |
| run: | | |
| hack/generate-ta-tasks.sh | |
| - name: Check missing Trusted Artifact variants | |
| id: missing | |
| run: | | |
| hack/missing-ta-tasks.sh | |
| - name: Attach patch | |
| if: ${{ steps.check.conclusion == 'failure' }} | |
| uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0 | |
| with: | |
| name: Trusted artifacts patch | |
| path: ./ta.patch |