Check for valid issue on reopen (#216397)

pull/216492/head
Bhavya U 2024-06-18 01:36:44 -07:00 committed by GitHub
parent 69105b9a4e
commit f388d52dc7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 22 additions and 0 deletions

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}}