30 lines
1.0 KiB
YAML
30 lines
1.0 KiB
YAML
name: "Deep Classifier: Scraper"
|
|
on:
|
|
schedule:
|
|
- cron: 0 0 15 * * # 15th of the month
|
|
repository_dispatch:
|
|
types: [trigger-deep-classifier-scraper]
|
|
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Actions
|
|
uses: actions/checkout@v2
|
|
with:
|
|
repository: "microsoft/vscode-github-triage-actions"
|
|
ref: stable
|
|
path: ./actions
|
|
- name: Install Actions
|
|
run: npm install --production --prefix ./actions
|
|
- name: Install Additional Dependencies
|
|
# Pulls in a bunch of other packages that arent needed for the rest of the actions
|
|
run: npm install @azure/storage-blob@12.1.1
|
|
- name: "Run Classifier: Scraper"
|
|
uses: ./actions/classifier-deep/train/fetch-issues
|
|
with:
|
|
blobContainerName: vscode-issue-classifier
|
|
blobStorageKey: ${{secrets.AZURE_BLOB_STORAGE_CONNECTION_STRING}}
|
|
token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}}
|
|
appInsightsKey: ${{secrets.TRIAGE_ACTIONS_APP_INSIGHTS}}
|