From a2c73ae52d0005d7636a7c3c2c5d563fd5c1c630 Mon Sep 17 00:00:00 2001 From: milinddethe15 Date: Thu, 24 Apr 2025 23:19:07 +0530 Subject: [PATCH] ci: remove `triage_issues` action Signed-off-by: milinddethe15 --- .github/workflows/triage_issues.yaml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/triage_issues.yaml diff --git a/.github/workflows/triage_issues.yaml b/.github/workflows/triage_issues.yaml deleted file mode 100644 index cf9da750ef..0000000000 --- a/.github/workflows/triage_issues.yaml +++ /dev/null @@ -1,19 +0,0 @@ -# Define a GitHub action workflow to determine whether issues -# should be added or removed from the Needs Triage Kanban board. -name: Check Triage Status of Issue -on: - issues: - types: [opened, closed, reopened, transferred, labeled, unlabeled] - # Issue is created, Issue is closed, Issue added or removed from projects, Labels added/removed - -jobs: - test: - runs-on: ubuntu-latest - timeout-minutes: 10 - steps: - - name: Update Kanban - uses: kubeflow/code-intelligence/Issue_Triage/action@master - with: - # Letting input NEEDS_TRIAGE_PROJECT_CARD_ID use the default value - ISSUE_NUMBER: ${{ github.event.issue.number }} - GITHUB_PERSONAL_ACCESS_TOKEN: ${{ secrets.triage_projects_github_token }}