From 6a5402d039f69e8265812f6a7832215008ff8d92 Mon Sep 17 00:00:00 2001 From: Kartik Raj Date: Thu, 4 May 2023 10:49:13 -0700 Subject: [PATCH] Use `microsoft/vscode-github-triage-actions` instead --- .github/workflows/community-feedback-auto-comment.yml | 5 +++-- .github/workflows/issue-labels.yml | 5 +++-- .github/workflows/lock-issues.yml | 5 +++-- .github/workflows/pr-file-check.yml | 5 +++-- .github/workflows/pr-labels.yml | 5 +++-- .github/workflows/triage-info-needed.yml | 10 ++++++---- 6 files changed, 21 insertions(+), 14 deletions(-) diff --git a/.github/workflows/community-feedback-auto-comment.yml b/.github/workflows/community-feedback-auto-comment.yml index 8627972e65a6..74fc2ef35f80 100644 --- a/.github/workflows/community-feedback-auto-comment.yml +++ b/.github/workflows/community-feedback-auto-comment.yml @@ -16,11 +16,12 @@ jobs: - name: Checkout Actions uses: actions/checkout@v3 with: - repository: 'microsoft/vscode-python-engineering' + repository: 'microsoft/vscode-github-triage-actions' + ref: stable path: ./actions - name: Install Actions run: npm install --production --prefix ./actions - name: Add Community Feedback Comment if applicable - uses: ./actions/community-feedback-auto-comment + uses: ./actions/python-community-feedback-auto-comment with: issue-number: ${{ github.event.issue.number }} diff --git a/.github/workflows/issue-labels.yml b/.github/workflows/issue-labels.yml index cd92e58be93f..3b2c0adeedb2 100644 --- a/.github/workflows/issue-labels.yml +++ b/.github/workflows/issue-labels.yml @@ -21,12 +21,13 @@ jobs: - name: Checkout Actions uses: actions/checkout@v3 with: - repository: 'microsoft/vscode-python-engineering' + repository: 'microsoft/vscode-github-triage-actions' + ref: stable path: ./actions - name: Install Actions run: npm install --production --prefix ./actions - name: "Add 'triage-needed' and remove unrecognizable labels & assignees" - uses: ./actions/issue-labels + uses: ./actions/python-issue-labels with: triagers: ${{ env.TRIAGERS }} token: ${{secrets.GITHUB_TOKEN}} diff --git a/.github/workflows/lock-issues.yml b/.github/workflows/lock-issues.yml index c4c78cbaf5cb..fb442d765437 100644 --- a/.github/workflows/lock-issues.yml +++ b/.github/workflows/lock-issues.yml @@ -18,11 +18,12 @@ jobs: - name: Checkout Actions uses: actions/checkout@v3 with: - repository: 'microsoft/vscode-python-engineering' + repository: 'microsoft/vscode-github-triage-actions' + ref: stable path: ./actions - name: Install Actions run: npm install --production --prefix ./actions - name: 'Lock Issues' - uses: ./actions/lock-issues + uses: ./actions/python-lock-issues with: token: ${{ github.token }} diff --git a/.github/workflows/pr-file-check.yml b/.github/workflows/pr-file-check.yml index e398221be31c..4f9461cfafe0 100644 --- a/.github/workflows/pr-file-check.yml +++ b/.github/workflows/pr-file-check.yml @@ -18,9 +18,10 @@ jobs: - name: Checkout Actions uses: actions/checkout@v3 with: - repository: 'microsoft/vscode-python-engineering' + repository: 'microsoft/vscode-github-triage-actions' + ref: stable path: ./actions - name: Install Actions run: npm install --production --prefix ./actions - name: Check for changed files - uses: ./actions/pr-file-check + uses: ./actions/python-pr-file-check diff --git a/.github/workflows/pr-labels.yml b/.github/workflows/pr-labels.yml index 0f58620cf276..a474d83da418 100644 --- a/.github/workflows/pr-labels.yml +++ b/.github/workflows/pr-labels.yml @@ -16,9 +16,10 @@ jobs: - name: Checkout Actions uses: actions/checkout@v3 with: - repository: 'microsoft/vscode-python-engineering' + repository: 'microsoft/vscode-github-triage-actions' + ref: stable path: ./actions - name: Install Actions run: npm install --production --prefix ./actions - name: Classify PR - uses: ./actions/pr-labels + uses: ./actions/python-pr-labels diff --git a/.github/workflows/triage-info-needed.yml b/.github/workflows/triage-info-needed.yml index 868e773cefc6..e5d4d2bc7492 100644 --- a/.github/workflows/triage-info-needed.yml +++ b/.github/workflows/triage-info-needed.yml @@ -15,12 +15,13 @@ jobs: - name: Checkout Actions uses: actions/checkout@v3 with: - repository: 'microsoft/vscode-python-engineering' + repository: 'microsoft/vscode-github-triage-actions' + ref: stable path: ./actions - name: Install Actions run: npm install --production --prefix ./actions - name: Add "info-needed" label - uses: ./actions/triage-info-needed + uses: ./actions/python-triage-info-needed with: triagers: ${{ env.TRIAGERS }} action: 'add' @@ -33,12 +34,13 @@ jobs: - name: Checkout Actions uses: actions/checkout@v3 with: - repository: 'microsoft/vscode-python-engineering' + repository: 'microsoft/vscode-github-triage-actions' + ref: stable path: ./actions - name: Install Actions run: npm install --production --prefix ./actions - name: Remove "info-needed" label - uses: ./actions/triage-info-needed + uses: ./actions/python-triage-info-needed with: triagers: ${{ env.TRIAGERS }} action: 'remove'