From fd4cd0f902a99a8566b9ee9811ce0e1564bdd509 Mon Sep 17 00:00:00 2001 From: Charly Molter Date: Mon, 6 Jan 2025 13:09:35 +0100 Subject: [PATCH] ci(.github): remove unecessary wf (#12420) Unnecessary Workflow Signed-off-by: Charly Molter --- .github/workflows/auto-backport.yaml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/auto-backport.yaml diff --git a/.github/workflows/auto-backport.yaml b/.github/workflows/auto-backport.yaml deleted file mode 100644 index 2d3a083f2e8e..000000000000 --- a/.github/workflows/auto-backport.yaml +++ /dev/null @@ -1,23 +0,0 @@ -name: Auto backport label -on: - pull_request_target: - types: [opened, synchronize, labeled] -env: - PREDEFINED_GLOBS: ".github/**/*,.circleci/**/*,Makefile,mk/**/*,tools/**/*,.golangci.yml,.kube-linter.yaml" - LABEL_TO_ADD: backport - NO_BACKPORT_AUTOLABEL: no-backport-autolabel -jobs: - backport_label: - runs-on: ubuntu-latest - permissions: - issues: write - steps: - - name: Checkout code - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - name: Check diff and add label - env: - GITHUB_TOKEN: ${{ github.token }} - run: | - tools/ci/needs_backporting.sh "${{ github.repository }}" "${{ github.event.pull_request.number }}" "origin/${{ github.base_ref }}" "HEAD" "$PREDEFINED_GLOBS" "$LABEL_TO_ADD" "$NO_BACKPORT_AUTOLABEL"