Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/generate-sbom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: main

- uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -62,9 +64,9 @@ jobs:
git checkout -b "$BRANCH"
git add docs/sbom/
git commit -m "chore: update SBOM inventory (${DATE})"
git push origin "$BRANCH"
git push --force origin "$BRANCH"
Comment thread
Copilot marked this conversation as resolved.
Outdated

gh pr create \
gh pr view "$BRANCH" > /dev/null 2>&1 || gh pr create \
--title "chore: update SBOM inventory (${DATE})" \
--body "## SBOM Update

Expand Down