chore(deps): update stackrox custom konflux tasks #974
Workflow file for this run
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: "Enforce PR Checklist" | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| - reopened | |
| - ready_for_review | |
| jobs: | |
| validate-checklist: | |
| runs-on: ubuntu-24.04 | |
| if: github.event.pull_request.draft == false | |
| steps: | |
| - name: Verify PR Checklist is Complete | |
| if: github.actor != 'red-hat-konflux[bot]' | |
| env: | |
| PR_BODY: ${{ github.event.pull_request.body }} | |
| run: | | |
| if ! (echo "$PR_BODY" | grep -q "\- \[x\] Patch has a change log entry \*\*OR\*\* does not need one"); then | |
| echo "Missing change log check" | |
| exit 1 | |
| fi | |
| if ! (echo "$PR_BODY" | grep -q "\- \[x\] Investigated and inspected CI test results"); then | |
| echo "Missing CI test check" | |
| exit 1 | |
| fi | |
| - name: Skip check for MintMaker | |
| if: github.actor == 'red-hat-konflux[bot]' | |
| run: | | |
| echo "MintMaker PRs are exempted from this check" |