Update GitHub workflows and PR templates #3
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: PR Summary Eval | ||
| on: | ||
| pull_request: | ||
| types: [opened, edited, synchronize] | ||
| jobs: | ||
| evaluate-summary: | ||
|
Check failure on line 8 in .github/workflows/pr-summary-eval.yml
|
||
| # Skip the initial 'opened' event for bot PRs — the generate workflow will | ||
| # handle eval after updating the body. | ||
| if: >- | ||
| !(github.event.action == 'opened' && endsWith(github.event.pull_request.user.login, '[bot]')) | ||
| uses: ./.github/workflows/pr-summary-eval-reusable.yml | ||
| with: | ||
| pr-number: ${{ github.event.pull_request.number }} | ||