From 6a3761d134d5447afe16bafae393e1518b96f002 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 2 Aug 2026 21:42:09 +0000 Subject: [PATCH 1/3] Initial plan From fa11b34e213e4730769c80c860d4d20d562acb7c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 2 Aug 2026 21:44:27 +0000 Subject: [PATCH 2/3] fix: generate-sbom workflow - fetch latest main, force-push, skip duplicate PR --- .github/workflows/generate-sbom.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/generate-sbom.yml b/.github/workflows/generate-sbom.yml index 1c6a2f9..b03e6d4 100644 --- a/.github/workflows/generate-sbom.yml +++ b/.github/workflows/generate-sbom.yml @@ -26,6 +26,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + with: + ref: main - uses: actions/setup-node@v4 with: @@ -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" - gh pr create \ + gh pr view "$BRANCH" > /dev/null 2>&1 || gh pr create \ --title "chore: update SBOM inventory (${DATE})" \ --body "## SBOM Update From 08bec700b979f87a466adcd1a8eee470668ae319 Mon Sep 17 00:00:00 2001 From: Vijay Sarvepalli Date: Sun, 2 Aug 2026 17:48:01 -0400 Subject: [PATCH 3/3] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- .github/workflows/generate-sbom.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/generate-sbom.yml b/.github/workflows/generate-sbom.yml index b03e6d4..6642abe 100644 --- a/.github/workflows/generate-sbom.yml +++ b/.github/workflows/generate-sbom.yml @@ -64,7 +64,7 @@ jobs: git checkout -b "$BRANCH" git add docs/sbom/ git commit -m "chore: update SBOM inventory (${DATE})" - git push --force origin "$BRANCH" + git push --force-with-lease origin "$BRANCH" gh pr view "$BRANCH" > /dev/null 2>&1 || gh pr create \ --title "chore: update SBOM inventory (${DATE})" \