From a61c2bc150fbda8a08ef473af9a793023a9d47d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ricks?= Date: Fri, 31 Jan 2025 13:08:04 +0100 Subject: [PATCH] Remove: Don't trigger external CI workflows anymore The triggered workflows are all obsolete and removed now. We don't use any build images anymore. Instead we build directly on images from gvm-libs without the need of dedicated build images per component. --- .github/workflows/container.yml | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 467ae96d..02fa6468 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -55,29 +55,3 @@ jobs: org.opencontainers.image.base.name=debian:testing-slim ref-name: ${{ inputs.ref-name }} secrets: inherit - - # triggers projects that work with stable branches on a new stable tag - trigger-stable-projects: - needs: build-push-debian-stable-container - if: github.ref_type == 'tag' && startsWith(github.ref_name, 'v') - name: Trigger update container images in related projects for new tags - strategy: - fail-fast: false - matrix: - repository: ["greenbone/gvmd", "greenbone/gsad"] - runs-on: ubuntu-latest - steps: - - name: Trigger ${{ matrix.repository }} build container image build - uses: greenbone/actions/trigger-workflow@v3 - with: - token: ${{ secrets.GREENBONE_BOT_TOKEN }} - repository: ${{ matrix.repository }} - workflow: build-container.yml - ref: main - - name: Trigger ${{ matrix.repository }} container image build - uses: greenbone/actions/trigger-workflow@v3 - with: - token: ${{ secrets.GREENBONE_BOT_TOKEN }} - repository: ${{ matrix.repository }} - workflow: container.yml - ref: main