Deep Classifier: Scraper #2
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: "Deep Classifier: Scraper" | |
on: | |
schedule: | |
- cron: 0 0 15 * * # 15th of the month | |
workflow_dispatch: | |
repository_dispatch: | |
types: [trigger-deep-classifier-scraper] | |
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: Install Additional Dependencies | |
# Pulls in a bunch of other packages that arent needed for the rest of the actions | |
run: npm install @azure/[email protected] | |
- 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}} |