Revert "Remove check for validity" (#217334)

Revert "Remove check for validity (#216675)"

This reverts commit a3017010e9.
pull/214468/head^2
Bhavya U 2024-06-24 11:11:05 -07:00 committed by GitHub
parent b8f8a1b4b2
commit 4a59a68f3a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 27 additions and 0 deletions

View File

@ -16,6 +16,11 @@ jobs:
- name: Install Actions
run: npm install --production --prefix ./actions
- name: Check for Validity
uses: ./actions/validity-checker
with:
token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}}
- name: Run CopyCat (VSCodeTriageBot/testissues)
uses: ./actions/copycat
with:

22
.github/workflows/on-reopen.yml vendored 100644
View File

@ -0,0 +1,22 @@
name: On Reopen
on:
issues:
types: [reopened]
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Checkout Actions
uses: actions/checkout@v4
with:
repository: "microsoft/vscode-github-triage-actions"
ref: stable
path: ./actions
- name: Install Actions
run: npm install --production --prefix ./actions
- name: Check for Validity
uses: ./actions/validity-checker
with:
token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}}