We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6e746b commit 15bc47fCopy full SHA for 15bc47f
.github/workflows/main.yaml
@@ -622,7 +622,9 @@ jobs:
622
sbom:
623
name: Create SBOM
624
runs-on: ubuntu-latest
625
- if: startsWith(github.ref, 'refs/tags/OTP-')
+ if: |
626
+ startsWith(github.ref, 'refs/tags/OTP-') || github.event_name == 'schedule' ||
627
+ (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'full-build-and-check'))
628
steps:
629
- name: Use HTTPS instead of SSH for Git cloning
630
run: git config --global url.https://github.com/.insteadOf ssh://[email protected]/
0 commit comments