mirror of
https://github.com/prowler-cloud/prowler.git
synced 2025-12-19 05:17:47 +00:00
Compare commits
1 Commits
ed3fd72e70
...
PROWLER-XX
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1b54476b10 |
19
.github/workflows/api-pull-request.yml
vendored
19
.github/workflows/api-pull-request.yml
vendored
@@ -253,3 +253,22 @@ jobs:
|
||||
image-tag: ${{ github.sha }}
|
||||
fail-on-critical: 'false'
|
||||
severity: 'CRITICAL'
|
||||
|
||||
# This job aggregates all the jobs above and is the one that should be marked as required in branch protection
|
||||
api-checks-pass:
|
||||
if: github.repository == 'prowler-cloud/prowler' && always()
|
||||
needs:
|
||||
- check-changes
|
||||
- code-quality
|
||||
- security-scans
|
||||
- tests
|
||||
- dockerfile-lint
|
||||
- container-build-and-scan
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 5
|
||||
steps:
|
||||
- name: Decide whether all checks passed
|
||||
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
|
||||
with:
|
||||
allowed-skips: code-quality, security-scans, tests, dockerfile-lint, container-build-and-scan
|
||||
jobs: ${{ toJSON(needs) }}
|
||||
|
||||
16
.github/workflows/mcp-pull-request.yml
vendored
16
.github/workflows/mcp-pull-request.yml
vendored
@@ -103,3 +103,19 @@ jobs:
|
||||
image-tag: ${{ github.sha }}
|
||||
fail-on-critical: 'false'
|
||||
severity: 'CRITICAL'
|
||||
|
||||
# This job aggregates all the jobs above and is the one that should be marked as required in branch protection
|
||||
mcp-checks-pass:
|
||||
if: github.repository == 'prowler-cloud/prowler' && always()
|
||||
needs:
|
||||
- check-changes
|
||||
- dockerfile-lint
|
||||
- container-build-and-scan
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 5
|
||||
steps:
|
||||
- name: Decide whether all checks passed
|
||||
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
|
||||
with:
|
||||
allowed-skips: dockerfile-lint, container-build-and-scan
|
||||
jobs: ${{ toJSON(needs) }}
|
||||
|
||||
19
.github/workflows/sdk-pull-request.yml
vendored
19
.github/workflows/sdk-pull-request.yml
vendored
@@ -516,3 +516,22 @@ jobs:
|
||||
image-tag: ${{ github.sha }}
|
||||
fail-on-critical: 'false'
|
||||
severity: 'CRITICAL'
|
||||
|
||||
# This job aggregates all the jobs above and is the one that should be marked as required in branch protection
|
||||
sdk-checks-pass:
|
||||
if: github.repository == 'prowler-cloud/prowler' && always()
|
||||
needs:
|
||||
- check-changes
|
||||
- code-quality
|
||||
- security-scans
|
||||
- tests
|
||||
- dockerfile-lint
|
||||
- container-build-and-scan
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 5
|
||||
steps:
|
||||
- name: Decide whether all checks passed
|
||||
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
|
||||
with:
|
||||
allowed-skips: code-quality, security-scans, tests, dockerfile-lint, container-build-and-scan
|
||||
jobs: ${{ toJSON(needs) }}
|
||||
|
||||
17
.github/workflows/ui-pull-request.yml
vendored
17
.github/workflows/ui-pull-request.yml
vendored
@@ -139,3 +139,20 @@ jobs:
|
||||
image-tag: ${{ github.sha }}
|
||||
fail-on-critical: 'false'
|
||||
severity: 'CRITICAL'
|
||||
|
||||
# This job aggregates all the jobs above and is the one that should be marked as required in branch protection
|
||||
ui-checks-pass:
|
||||
if: github.repository == 'prowler-cloud/prowler' && always()
|
||||
needs:
|
||||
- check-changes
|
||||
- code-quality-and-build
|
||||
- dockerfile-lint
|
||||
- container-build-and-scan
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 5
|
||||
steps:
|
||||
- name: Decide whether all checks passed
|
||||
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
|
||||
with:
|
||||
allowed-skips: code-quality-and-build, dockerfile-lint, container-build-and-scan
|
||||
jobs: ${{ toJSON(needs) }}
|
||||
|
||||
Reference in New Issue
Block a user