Fix Ponder Build ID uniqueness #751
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: Require PR Description Checks | |
| on: | |
| pull_request: | |
| types: [opened, reopened, edited, ready_for_review, converted_to_draft] | |
| jobs: | |
| require-pr-description-checks: | |
| if: ${{ github.event.pull_request.draft != true }} # skip on draft PRs | |
| runs-on: blacksmith-4vcpu-ubuntu-2204 | |
| steps: | |
| - uses: mheap/require-checklist-action@v2 | |
| with: | |
| requireChecklist: false # If this is true and there are no checklists detected, the action will fail | |
| skipComments: true # Stop checking comments for checklists. AI Review Agents may add comments that interfere with checklist detection. |