From 0c476dfa1233a4bcd8966ea3d1564cf911cc622b Mon Sep 17 00:00:00 2001 From: Bhavya U Date: Tue, 30 Jul 2024 00:48:24 -0700 Subject: [PATCH] Remove test plan item workflow --- .../workflows/test-plan-item-validator.yml | 26 ------------------- 1 file changed, 26 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 25a281f..0000000 --- a/.github/workflows/test-plan-item-validator.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Test Plan Item Validator -on: - issues: - types: [edited] - -jobs: - main: - runs-on: ubuntu-latest - steps: - - name: Checkout Actions - if: contains(github.event.issue.labels.*.name, 'testplan-item') || contains(github.event.issue.labels.*.name, 'invalid-testplan-item') - uses: actions/checkout@v2 - with: - repository: 'microsoft/vscode-github-triage-actions' - ref: stable - - name: Install Actions - if: contains(github.event.issue.labels.*.name, 'testplan-item') || contains(github.event.issue.labels.*.name, 'invalid-testplan-item') - run: npm install --production - - name: Run Test Plan Item Validator - if: contains(github.event.issue.labels.*.name, 'testplan-item') || contains(github.event.issue.labels.*.name, 'invalid-testplan-item') - uses: ./test-plan-item-validator - with: - token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}} - 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.