From 0c5dc49913ae3ad1198f2ad592cab5d7dbc21d52 Mon Sep 17 00:00:00 2001 From: Bhavya U Date: Mon, 29 Jul 2024 09:29:53 -0700 Subject: [PATCH] Remove test-plan workflow. --- .../workflows/test-plan-item-validator.yml | 28 ------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/test-plan-item-validator.yml diff --git a/.github/workflows/test-plan-item-validator.yml b/.github/workflows/test-plan-item-validator.yml deleted file mode 100644 index e714fd8abdd..00000000000 --- a/.github/workflows/test-plan-item-validator.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Test Plan Item Validator -on: - issues: - types: [edited, labeled] - -permissions: - issues: write - -jobs: - main: - runs-on: ubuntu-latest - if: contains(github.event.issue.labels.*.name, 'testplan-item') || contains(github.event.issue.labels.*.name, 'invalid-testplan-item') - steps: - - name: Checkout Actions - uses: actions/checkout@v4 - with: - repository: 'microsoft/vscode-github-triage-actions' - path: ./actions - ref: stable - - name: Install Actions - run: npm install --production --prefix ./actions - - name: Run Test Plan Item Validator - uses: ./actions/test-plan-item-validator - with: - label: testplan-item - invalidLabel: invalid-testplan-item - comment: Invalid test plan item. See errors below and the [test plan item spec](https://github.com/microsoft/vscode/wiki/Writing-Test-Plan-Items) for more information. This comment will go away when the issues are resolved. - token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}}