Layne can post a comment directly on the pull request when a scan finds security issues. The comment appears in the PR thread and is updated in place on each re-push - it does not accumulate new comments.
PR comments are disabled by default and must be opted in per repo or globally.
- When a scan finds issues: Layne posts (or updates) a comment with the finding summary.
- When a subsequent push clears all findings: Layne updates the existing comment to show "scan passed".
- When a scan passes and there was no prior failure comment: nothing is posted.
This means the comment only appears when there is something worth flagging, and it self-resolves visually when the developer fixes the issues.
{
"$global": {
"comment": {
"enabled": false
}
},
"owner/repo": {
"comment": { "enabled": true }
}
}| Key | Type | Default | Description |
|---|---|---|---|
enabled |
boolean | false |
Must be true to post PR comments for this repo |
template |
string | null | null |
Custom Markdown template for the failure comment. Omit for the default format |
Per-repo comment keys merge into the global block - set only what differs. This is the one exception to the usual full-replacement behavior for top-level blocks.
To disable comments for a specific repo when they are globally enabled:
{
"$global": {
"comment": { "enabled": true }
},
"acme/low-signal-repo": {
"comment": { "enabled": false }
}
}When findings are present:
<!-- layne-security-scan -->
## 🔴 Layne - 3 finding(s)
Found 3 issue(s): 1 high, 2 medium.After a clean push:
<!-- layne-security-scan -->
✅ **Layne - scan passed**
No security issues found on latest push.Set template to a Markdown string with {{variable}} placeholders. PR comments share the same template variables as notifiers - see Notifiers - Template variables for the full list.
:::warning
Any custom template must include <!-- layne-security-scan --> as its first line. Layne uses this marker to find and update the existing comment on re-pushes. Without it, every scan creates a new comment instead of updating the existing one.
:::
Example:
{
"acme/payments": {
"comment": {
"enabled": true,
"template": "<!-- layne-security-scan -->\n## Security findings for {{repo}} PR #{{prNumber}}\n\n{{summary}}\n\nSee the [Check Run]({{prUrl}}) for details."
}
}
}