Skip to content
Merged
Changes from all 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: 3 additions & 3 deletions .github/workflows/sbom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ permissions:

jobs:
sbom:
# Skip if the job was triggered by the SBOM commit in the latest push.
if: "!contains(github.event.head_commit.message, 'SBOM updated')"
# Skip if the job was triggered by the SBOM commit or a merge commit in the latest push.
if: "!contains(github.event.head_commit.message, 'Merge pull request') && !contains(github.event.head_commit.message, 'SBOM updated')"
runs-on: ubuntu-latest

steps:
# Checkout the full repository history (required to access origin/master)
# Checkout the repository
- name: Checkout repository
uses: actions/checkout@v4
with:
Expand Down
Loading