mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 03:54:24 +01:00
23 lines
529 B
YAML
23 lines
529 B
YAML
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}}
|