2021-12-15 07:40:24 +08:00
|
|
|
name: "Deep Classifier: Unassign Monitor"
|
2020-06-18 12:10:33 +08:00
|
|
|
on:
|
|
|
|
issues:
|
|
|
|
types: [unassigned]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
main:
|
|
|
|
runs-on: ubuntu-latest
|
2021-12-15 07:40:24 +08:00
|
|
|
if: ${{ ! contains(github.event.issue.labels.*.name, 'triage-needed') }}
|
2020-06-18 12:10:33 +08:00
|
|
|
steps:
|
|
|
|
- name: Checkout Actions
|
2022-03-24 01:21:25 +08:00
|
|
|
uses: actions/checkout@v3
|
2020-06-18 12:10:33 +08:00
|
|
|
with:
|
2020-11-24 18:44:18 +08:00
|
|
|
repository: "microsoft/vscode-github-triage-actions"
|
2021-02-06 06:57:41 +08:00
|
|
|
ref: stable
|
2020-06-18 12:10:33 +08:00
|
|
|
path: ./actions
|
|
|
|
- name: Install Actions
|
|
|
|
run: npm install --production --prefix ./actions
|
2020-06-19 02:34:30 +08:00
|
|
|
- name: "Run Classifier: Monitor"
|
2020-06-18 12:10:33 +08:00
|
|
|
uses: ./actions/classifier-deep/monitor
|
|
|
|
with:
|
|
|
|
botName: vscode-triage-bot
|
|
|
|
token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}}
|
|
|
|
appInsightsKey: ${{secrets.TRIAGE_ACTIONS_APP_INSIGHTS}}
|