Visual Studio Code on Windows 8 / Windows Server 2012 will soon stop receiving updates. Consider upgrading your windows version. #8215
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Commands | |
on: | |
issue_comment: | |
types: [created] | |
issues: | |
types: [labeled] | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Actions | |
uses: actions/checkout@v2 | |
with: | |
repository: 'microsoft/vscode-github-triage-actions' | |
ref: master | |
- name: Install Actions | |
run: npm install --production | |
- name: Run Commands | |
uses: ./commands | |
with: | |
appInsightsKey: ${{secrets.TRIAGE_ACTIONS_APP_INSIGHTS}} | |
token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}} | |
config-path: commands |