From fc5e9345cd263dbf0ae2dd557101082bb732a5ee Mon Sep 17 00:00:00 2001 From: John Corpuz Date: Wed, 6 May 2026 13:13:40 -0400 Subject: [PATCH] ci(DATAGO-12265): remove WhiteSource and add workflow_dispatch to CI Remove WhiteSource (Mend) integration from CI workflow and delete the cleanup_ws.yaml workflow. Add workflow_dispatch trigger to allow manual CI runs from the GitHub Actions UI. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/ci.yaml | 5 +---- .github/workflows/cleanup_ws.yaml | 14 -------------- 2 files changed, 1 insertion(+), 18 deletions(-) delete mode 100644 .github/workflows/cleanup_ws.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b61a82ea..47e16307 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -5,6 +5,7 @@ on: - main pull_request: types: [opened, synchronize] + workflow_dispatch: concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }} @@ -42,13 +43,9 @@ jobs: with: min-python-version: "3.10" max-python-version: "3.13" - whitesource_project_name: ${{ github.event.repository.name }} - whitesource_product_name: "solaceai" - whitesource_config_file: "wss-unified-agent.config" secrets: SONAR_TOKEN: ${{ secrets.SONARQUBE_TOKEN }} SONAR_HOST_URL: ${{ secrets.SONARQUBE_HOST_URL }} - WHITESOURCE_API_KEY: ${{ secrets.WHITESOURCE_API_KEY }} MANIFEST_AWS_ACCESS_KEY_ID: ${{ secrets.MANIFEST_READ_ONLY_AWS_ACCESS_KEY_ID }} MANIFEST_AWS_SECRET_ACCESS_KEY: ${{ secrets.MANIFEST_READ_ONLY_AWS_SECRET_ACCESS_KEY }} MANIFEST_AWS_REGION: ${{ secrets.AWS_DEFAULT_REGION }} diff --git a/.github/workflows/cleanup_ws.yaml b/.github/workflows/cleanup_ws.yaml deleted file mode 100644 index 9942657d..00000000 --- a/.github/workflows/cleanup_ws.yaml +++ /dev/null @@ -1,14 +0,0 @@ -name: Cleanup WhiteSource Project - -on: - pull_request: - types: [closed] - -permissions: - contents: read - -jobs: - cleanup-whitesource: - uses: SolaceDev/solace-public-workflows/.github/workflows/cleanup_ws.yml@main - secrets: - ws_api_key: ${{ secrets.WHITESOURCE_API_KEY }}