mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-10-29 17:52:32 +00:00
backport of commit 832c78ee6e (#23671)
This commit is contained in:
committed by
GitHub
parent
42f36475ed
commit
3a7643d315
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
@@ -176,12 +176,13 @@ jobs:
|
||||
|
||||
test-go-fips:
|
||||
name: Run Go tests with FIPS configuration
|
||||
# Only run this job for the enterprise repo if the PR is not docs/ui only
|
||||
# Only run fips on the enterprise repo, and only if it's main or a release branch
|
||||
# (i.e. not a PR), or is a PR with the label "fips"
|
||||
if: |
|
||||
github.event.pull_request.draft == false &&
|
||||
needs.setup.outputs.enterprise == 1 &&
|
||||
needs.verify-changes.outputs.is_docs_change == 'false' &&
|
||||
needs.verify-changes.outputs.is_ui_change == 'false'
|
||||
needs.verify-changes.outputs.is_ui_change == 'false' &&
|
||||
(contains(github.event.pull_request.labels.*.name, 'fips') || github.ref_name == 'main' || startsWith(github.ref_name, 'release/'))
|
||||
needs:
|
||||
- setup
|
||||
- verify-changes
|
||||
|
||||
Reference in New Issue
Block a user