You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/generate_sbom.yml
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -63,17 +63,19 @@ jobs:
63
63
enable-cache: true
64
64
65
65
- name: Install dependencies
66
-
run: |
67
-
uv sync --group generate_sbom
66
+
run: uv sync --group generate_sbom
68
67
69
68
- name: generate_sbom.py
70
69
run: uv run etc/sbom/generate_sbom.py --enable-github-action-token --target=branch --sbom-metadata=etc/sbom/metadata.cdx.json --save-warnings=${{runner.temp}}/warnings.txt
71
70
71
+
- name: Generate Pull Request Content
72
+
run: printf "SBOM updated after commit ${{ github.sha }}.\n\nThe following warnings were output when generating the SBOM:\n" | cat - ${{runner.temp}}/warnings.txt > ${{runner.temp}}/pr_body.txt
0 commit comments