From dd3f3f9d7fe87bd2286defe152b2beff944fedad Mon Sep 17 00:00:00 2001 From: Jackson Kearl Date: Thu, 4 Mar 2021 10:46:46 -0800 Subject: [PATCH] Update issue scraper to use standard bot PAT and run every month --- .github/workflows/deep-classifier-scraper.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deep-classifier-scraper.yml b/.github/workflows/deep-classifier-scraper.yml index 78a9b7f9f17..270e9ceb430 100644 --- a/.github/workflows/deep-classifier-scraper.yml +++ b/.github/workflows/deep-classifier-scraper.yml @@ -1,5 +1,7 @@ name: "Deep Classifier: Scraper" on: + schedule: + - cron: 0 0 15 * * # 15th of the month repository_dispatch: types: [trigger-deep-classifier-scraper] @@ -23,5 +25,5 @@ jobs: with: blobContainerName: vscode-issue-classifier blobStorageKey: ${{secrets.AZURE_BLOB_STORAGE_CONNECTION_STRING}} - token: ${{secrets.ISSUE_SCRAPER_TOKEN}} + token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}} appInsightsKey: ${{secrets.TRIAGE_ACTIONS_APP_INSIGHTS}}