Comment out svc-bie-kafka workflows tied to inactive services #4427
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "CI" | |
# Runs Continuous Integration tests and checks | |
# See https://github.com/department-of-veterans-affairs/abd-vro/wiki/CI-CD-Workflows | |
on: | |
pull_request: | |
branches: [main, develop, domain-*] | |
types: [ready_for_review, synchronize, opened, reopened] | |
push: | |
branches: [ develop, domain-* ] | |
# Allow manual triggering | |
workflow_dispatch: | |
concurrency: | |
group: ci-${{ github.ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
nondraft-pr: | |
# Adding an `if:` that evaluates to false for this nondraft-pr job prevents other dependent jobs from running. | |
# For github.event.pull_request fields, see | |
# https://docs.github.com/en/webhooks-and-events/webhooks/webhook-events-and-payloads#pull_request | |
if: github.event_name != 'pull_request' || | |
(github.event_name == 'pull_request' && !github.event.pull_request.draft ) | |
runs-on: ubuntu-latest | |
steps: | |
- name: "DEBUG" | |
run: | | |
echo "${{ github.event_name }} ${{ github.event.pull_request.draft }}" | |
lint-and-test: | |
uses: ./.github/workflows/test-code.yml | |
secrets: inherit | |
codeql: | |
uses: ./.github/workflows/codeql-analysis.yml | |
secrets: inherit | |
container-healthchecks: | |
needs: nondraft-pr | |
uses: ./.github/workflows/container-healthchecks.yml | |
secrets: inherit | |
svc-bgs-api: | |
needs: nondraft-pr | |
uses: ./.github/workflows/svc-bgs-api-integration-test.yml | |
secrets: inherit | |
svc-bip-api: | |
needs: nondraft-pr | |
uses: ./.github/workflows/svc-bip-api-integration-test.yml | |
secrets: inherit | |
# NOTE: svc-bie-kafka workflows are tied to inactive services and commented out to prevent unnecessary execution and updates. | |
# Documentation: | |
# - Disabling issue: https://github.com/department-of-veterans-affairs/abd-vro/issues/3802 | |
# - BIE Docs: https://github.com/department-of-veterans-affairs/abd-vro/issues/3753 | |
# svc-bie-kafka-end-to-end: | |
# needs: nondraft-pr | |
# uses: ./.github/workflows/bie-kafka-end2end-test.yml | |
# secrets: inherit | |
ee-ep-merge-end-to-end: | |
needs: nondraft-pr | |
uses: ./.github/workflows/ee-ep-merge-end-to-end.yml | |
secrets: inherit |