From 0682ed69814a120af816481a92990a68a8034cc1 Mon Sep 17 00:00:00 2001 From: ashsolei Date: Tue, 14 Apr 2026 21:44:59 +0200 Subject: [PATCH] Add SBOM generation workflow Enable automated Software Bill of Materials generation using the enterprise reusable workflow for supply chain security compliance. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/sbom.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/sbom.yml diff --git a/.github/workflows/sbom.yml b/.github/workflows/sbom.yml new file mode 100644 index 0000000000..63b1514d8c --- /dev/null +++ b/.github/workflows/sbom.yml @@ -0,0 +1,20 @@ +name: SBOM Generation + +on: + push: + branches: [main] + workflow_dispatch: + +permissions: + contents: write + id-token: write + attestations: write + +jobs: + sbom: + uses: Ai-road-4-You/enterprise-ci-cd/.github/workflows/sbom.yml@main + permissions: + contents: write + id-token: write + attestations: write +