Check Non-Standard Characters red on main: gha default now scans .md, flagging 28 pre-existing em dashes #46
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: Summarize new issues | |
| # Thin caller for the shared reusable workflow in Morrison-Lab/gha. | |
| # The reusable workflow reproduces the previous standalone behavior: an | |
| # AI-generated one-paragraph summary posted as an issue comment, with | |
| # prompt-injection hardening (a randomized nonce around the untrusted issue | |
| # body) and a blank-response guard so a failed inference doesn't post an | |
| # empty comment. | |
| # See https://github.com/Morrison-Lab/gha for inputs and versioning. | |
| on: | |
| issues: | |
| types: [opened] | |
| jobs: | |
| # Keep the job id (summary) matching the previous standalone workflow so | |
| # the status-check context name doesn't change. | |
| summary: | |
| permissions: | |
| issues: write | |
| models: read | |
| contents: read | |
| uses: Morrison-Lab/gha/.github/workflows/summary.yml@v2 |