From d3f0a130c50b329c8823f5566594e74dae8b7fa7 Mon Sep 17 00:00:00 2001 From: Adam Roberts Date: Fri, 3 Nov 2023 10:32:04 -0400 Subject: [PATCH] chore(ci): remove the workflow to update the old operator the legacy sysdig chart has been deprecated, and as a result we can remove the workflow to update the legacy sysdig-operator when the chart is updated --- .github/workflows/update-operator.yaml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/update-operator.yaml diff --git a/.github/workflows/update-operator.yaml b/.github/workflows/update-operator.yaml deleted file mode 100644 index 6d212f1fd..000000000 --- a/.github/workflows/update-operator.yaml +++ /dev/null @@ -1,25 +0,0 @@ -name: Update the Sysdig Operator Repo - -on: - release: - types: [published] - -jobs: - dispatch: - runs-on: ubuntu-latest - steps: - - name: filter release tag - id: filter_tag - run: | - if [[ "${{ github.event.release.tag_name }}" =~ ^sysdig-[0-9]+\.[0-9]+\.[0-9]+$ ]]; then - echo ::set-output name=tag_match::true - fi - - - name: update sysdig-operator - if: steps.filter_tag.outputs.tag_match == 'true' - uses: peter-evans/repository-dispatch@v2 - with: - token: ${{ secrets.TOOLS_JENKINS_ADMIN_ACCESS_GITHUB_TOKEN }} - repository: sysdiglabs/sysdig-operator - event-type: sysdig-release - client-payload: '{"tag": "${{ github.event.release.tag_name }}" }'