We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0e3acd8 + a7d9342 commit 19e5d86Copy full SHA for 19e5d86
.github/workflows/sbom.yml
@@ -16,12 +16,12 @@ permissions:
16
17
jobs:
18
sbom:
19
- # Skip if the job was triggered by the SBOM commit in the latest push.
20
- 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')"
21
runs-on: ubuntu-latest
22
23
steps:
24
- # Checkout the full repository history (required to access origin/master)
+ # Checkout the repository
25
- name: Checkout repository
26
uses: actions/checkout@v4
27
with:
0 commit comments