From 66f0e65e01306909057478df07d4700ff86278a0 Mon Sep 17 00:00:00 2001 From: Jackson Kearl Date: Fri, 27 Mar 2020 21:33:36 -0700 Subject: [PATCH] Revert "Use the standard github token in places where we don't need to recursively trigger automations." This reverts commit 6f2f1d6eb08eb7f8f811139e37a49ecac65495e1. --- .github/workflows/needs-more-info-closer.yml | 1 + .github/workflows/needs-more-info-labeler.yml | 1 + .github/workflows/new-release.yml | 1 + .github/workflows/test-plan-item-validator.yml | 1 + 4 files changed, 4 insertions(+) diff --git a/.github/workflows/needs-more-info-closer.yml b/.github/workflows/needs-more-info-closer.yml index 8149b7d801c..53c922cfa69 100644 --- a/.github/workflows/needs-more-info-closer.yml +++ b/.github/workflows/needs-more-info-closer.yml @@ -15,6 +15,7 @@ jobs: - name: Run Needs More Info Closer uses: ./needs-more-info-closer with: + token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}} label: needs more info days: 7 comment: "This issue has been closed automatically because it needs more information and has not had recent activity. See also our [issue reporting](https://aka.ms/vscodeissuereporting) guidelines.\n\nHappy Coding!" diff --git a/.github/workflows/needs-more-info-labeler.yml b/.github/workflows/needs-more-info-labeler.yml index 1dfbcb1ac3c..eafd078f5a1 100644 --- a/.github/workflows/needs-more-info-labeler.yml +++ b/.github/workflows/needs-more-info-labeler.yml @@ -15,6 +15,7 @@ jobs: - name: Run Needs More Info Labeler uses: ./needs-more-info-labeler with: + token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}} matcher: '\b(\d\.\d{2,3}\.\d|insiders?|1\.\d\d\d?)\b' tags: feature_request_template bots: vscodebot|vscode-triage-bot diff --git a/.github/workflows/new-release.yml b/.github/workflows/new-release.yml index 8dd33ab52c0..7c83c7cbdff 100644 --- a/.github/workflows/new-release.yml +++ b/.github/workflows/new-release.yml @@ -15,6 +15,7 @@ jobs: - name: Run New Release uses: ./new-release with: + token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}} label: new release labelColor: "006b75" labelDescription: Issues found in a recent release of VS Code diff --git a/.github/workflows/test-plan-item-validator.yml b/.github/workflows/test-plan-item-validator.yml index 82e6f9264fe..2972f45df3f 100644 --- a/.github/workflows/test-plan-item-validator.yml +++ b/.github/workflows/test-plan-item-validator.yml @@ -15,6 +15,7 @@ jobs: - name: Run Test Plan Item Validator uses: ./test-plan-item-validator with: + token: ${{secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT}} label: testplan-item invalidLabel: invalid-testplan-item comment: Invalid test plan item. See errors below and the [test plan item spec](https://github.com/microsoft/vscode/wiki/Writing-Test-Plan-Items) for more information. This comment will go away when the issues are resolved. -- GitLab