Some checks failed
Go Benchmark / Performance Regression Check (push) Has been cancelled
Cerberus Integration / Cerberus Security Stack Integration (push) Has been cancelled
Upload Coverage to Codecov / Backend Codecov Upload (push) Has been cancelled
Upload Coverage to Codecov / Frontend Codecov Upload (push) Has been cancelled
CodeQL - Analyze / CodeQL analysis (go) (push) Has been cancelled
CodeQL - Analyze / CodeQL analysis (javascript-typescript) (push) Has been cancelled
CrowdSec Integration / CrowdSec Bouncer Integration (push) Has been cancelled
Docker Build, Publish & Test / build-and-push (push) Has been cancelled
Quality Checks / Auth Route Protection Contract (push) Has been cancelled
Quality Checks / Codecov Trigger/Comment Parity Guard (push) Has been cancelled
Quality Checks / Backend (Go) (push) Has been cancelled
Quality Checks / Frontend (React) (push) Has been cancelled
Rate Limit integration / Rate Limiting Integration (push) Has been cancelled
Security Scan (PR) / Trivy Binary Scan (push) Has been cancelled
Supply Chain Verification (PR) / Verify Supply Chain (push) Has been cancelled
WAF integration / Coraza WAF Integration (push) Has been cancelled
Docker Build, Publish & Test / Security Scan PR Image (push) Has been cancelled
Repo Health Check / Repo health (push) Has been cancelled
History Rewrite Dry-Run / Dry-run preview for history rewrite (push) Has been cancelled
Prune Renovate Branches / prune (push) Has been cancelled
Renovate / renovate (push) Has been cancelled
Nightly Build & Package / sync-development-to-nightly (push) Has been cancelled
Nightly Build & Package / Trigger Nightly Validation Workflows (push) Has been cancelled
Nightly Build & Package / build-and-push-nightly (push) Has been cancelled
Nightly Build & Package / test-nightly-image (push) Has been cancelled
Nightly Build & Package / verify-nightly-supply-chain (push) Has been cancelled
Update GeoLite2 Checksum / update-checksum (push) Has been cancelled
Container Registry Prune / prune-ghcr (push) Has been cancelled
Container Registry Prune / prune-dockerhub (push) Has been cancelled
Container Registry Prune / summarize (push) Has been cancelled
5.8 KiB
Executable File
5.8 KiB
Executable File
Supply Chain Security Comment Format Reference
Quick reference for the PR comment format used by the supply chain security workflow.
Comment Identifier
All comments include a hidden HTML identifier for update tracking:
<!-- supply-chain-security-comment -->
This allows the peter-evans/create-or-update-comment action to find and update the same comment on each scan run.
Comment Sections
1. Header
## 🔒 Supply Chain Security Scan
**Last Updated**: YYYY-MM-DD HH:MM:SS UTC
**Workflow Run**: [#RUN_NUMBER](WORKFLOW_URL)
---
2. Status (varies by condition)
A. Waiting for Image
### ⏳ Status: Waiting for Image
The Docker image has not been built yet. This scan will run automatically once the docker-build workflow completes.
_This is normal for PR workflows._
B. SBOM Validation Failed
### ⚠️ Status: SBOM Validation Failed
The Software Bill of Materials (SBOM) could not be validated. Please check the [workflow logs](WORKFLOW_URL) for details.
**Action Required**: Review and resolve SBOM generation issues.
C. No Vulnerabilities
### ✅ Status: No Vulnerabilities Detected
🎉 Great news! No security vulnerabilities were found in this image.
| Severity | Count |
|----------|-------|
| 🔴 Critical | 0 |
| 🟠 High | 0 |
| 🟡 Medium | 0 |
| 🔵 Low | 0 |
D. Critical Vulnerabilities
### 🚨 Status: Critical Vulnerabilities Detected
⚠️ **Action Required**: X critical vulnerabilities require immediate attention!
| Severity | Count |
|----------|-------|
| 🔴 Critical | X |
| 🟠 High | X |
| 🟡 Medium | X |
| 🔵 Low | X |
| **Total** | **X** |
📋 [View detailed vulnerability report](WORKFLOW_URL)
E. High-Severity Vulnerabilities
### ⚠️ Status: High-Severity Vulnerabilities Detected
X high-severity vulnerabilities found. Please review and address.
| Severity | Count |
|----------|-------|
| 🔴 Critical | 0 |
| 🟠 High | X |
| 🟡 Medium | X |
| 🔵 Low | X |
| **Total** | **X** |
📋 [View detailed vulnerability report](WORKFLOW_URL)
F. Other Vulnerabilities
### 📊 Status: Vulnerabilities Detected
Security scan found X vulnerabilities.
| Severity | Count |
|----------|-------|
| 🔴 Critical | 0 |
| 🟠 High | 0 |
| 🟡 Medium | X |
| 🔵 Low | X |
| **Total** | **X** |
📋 [View detailed vulnerability report](WORKFLOW_URL)
3. Footer
---
<sub><!-- supply-chain-security-comment --></sub>
Emoji Legend
| Emoji | Meaning | Usage |
|---|---|---|
| 🔒 | Security | Main header |
| ⏳ | Waiting | Image not ready |
| ✅ | Success | No vulnerabilities |
| ⚠️ | Warning | Medium/High severity |
| 🚨 | Alert | Critical vulnerabilities |
| 📊 | Info | General vulnerabilities |
| 🎉 | Celebration | All clear |
| 📋 | Document | Link to report |
| 🔴 | Critical | Critical severity |
| 🟠 | High | High severity |
| 🟡 | Medium | Medium severity |
| 🔵 | Low | Low severity |
Status Priority
When multiple conditions exist, the status is determined by:
- Critical vulnerabilities → 🚨 Critical status
- High vulnerabilities → ⚠️ High status
- Other vulnerabilities → 📊 General status
- No vulnerabilities → ✅ Success status
Variables Available
In the workflow, these variables are used to build the comment:
| Variable | Source | Description |
|---|---|---|
TIMESTAMP |
date -u |
UTC timestamp |
IMAGE_EXISTS |
Step output | Whether Docker image is available |
SBOM_VALID |
Step output | SBOM validation status |
CRITICAL |
Environment | Critical vulnerability count |
HIGH |
Environment | High severity count |
MEDIUM |
Environment | Medium severity count |
LOW |
Environment | Low severity count |
TOTAL |
Calculated | Sum of all vulnerabilities |
Comment Update Logic
graph TD
A[Scan Completes] --> B{PR Context?}
B -->|No| Z[Skip Comment]
B -->|Yes| C[Extract PR Number]
C --> D[Build Comment Body]
D --> E[Search for Existing Comment]
E --> F{Found?}
F -->|Yes| G[Update Existing]
F -->|No| H[Create New]
G --> I[Comment Updated]
H --> I
The peter-evans/create-or-update-comment action:
- Searches for comments by
github-actions[bot] - Filters by content containing
<!-- supply-chain-security-comment --> - Updates if found, creates if not found
- Uses
edit-mode: replaceto fully replace content
Integration Points
Triggered By
docker-build.ymlworkflow completion (viaworkflow_run)- Direct
pull_requestevents - Scheduled runs (Mondays 00:00 UTC)
- Manual dispatch
Data Sources
- Syft: SBOM generation
- Grype: Vulnerability scanning
- GitHub Container Registry: Docker images
- GitHub API: PR comments
Outputs
- PR comment (updated in place)
- Step summary in workflow
- Artifact upload (SBOM)
Example Timeline
PR Created
↓
Docker Build Starts
↓
Docker Build Completes
↓
Supply Chain Scan Starts
↓
Image Available? → No
↓
Comment Posted: "⏳ Waiting for Image"
↓
[Wait 5 minutes]
↓
Docker Build Completes
↓
Supply Chain Re-runs
↓
Scan Completes
↓
Comment Updated: "✅ No Vulnerabilities" or "⚠️ X Vulnerabilities"
Testing Checklist
- Comment appears on new PR
- Comment updates instead of duplicating
- Timestamp reflects latest scan
- Vulnerability counts are accurate
- Links to workflow run work
- Emoji render correctly
- Table formatting is preserved
- Hidden identifier is present
- Comment updates when vulnerabilities fixed
- Comment updates when new vulnerabilities introduced