Skip to content

Commit 6a5402d

Browse files
author
Kartik Raj
committed
Use microsoft/vscode-github-triage-actions instead
1 parent 0697223 commit 6a5402d

6 files changed

+21
-14
lines changed

.github/workflows/community-feedback-auto-comment.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@ jobs:
1616
- name: Checkout Actions
1717
uses: actions/checkout@v3
1818
with:
19-
repository: 'microsoft/vscode-python-engineering'
19+
repository: 'microsoft/vscode-github-triage-actions'
20+
ref: stable
2021
path: ./actions
2122
- name: Install Actions
2223
run: npm install --production --prefix ./actions
2324
- name: Add Community Feedback Comment if applicable
24-
uses: ./actions/community-feedback-auto-comment
25+
uses: ./actions/python-community-feedback-auto-comment
2526
with:
2627
issue-number: ${{ github.event.issue.number }}

.github/workflows/issue-labels.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,13 @@ jobs:
2121
- name: Checkout Actions
2222
uses: actions/checkout@v3
2323
with:
24-
repository: 'microsoft/vscode-python-engineering'
24+
repository: 'microsoft/vscode-github-triage-actions'
25+
ref: stable
2526
path: ./actions
2627
- name: Install Actions
2728
run: npm install --production --prefix ./actions
2829
- name: "Add 'triage-needed' and remove unrecognizable labels & assignees"
29-
uses: ./actions/issue-labels
30+
uses: ./actions/python-issue-labels
3031
with:
3132
triagers: ${{ env.TRIAGERS }}
3233
token: ${{secrets.GITHUB_TOKEN}}

.github/workflows/lock-issues.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,12 @@ jobs:
1818
- name: Checkout Actions
1919
uses: actions/checkout@v3
2020
with:
21-
repository: 'microsoft/vscode-python-engineering'
21+
repository: 'microsoft/vscode-github-triage-actions'
22+
ref: stable
2223
path: ./actions
2324
- name: Install Actions
2425
run: npm install --production --prefix ./actions
2526
- name: 'Lock Issues'
26-
uses: ./actions/lock-issues
27+
uses: ./actions/python-lock-issues
2728
with:
2829
token: ${{ github.token }}

.github/workflows/pr-file-check.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ jobs:
1818
- name: Checkout Actions
1919
uses: actions/checkout@v3
2020
with:
21-
repository: 'microsoft/vscode-python-engineering'
21+
repository: 'microsoft/vscode-github-triage-actions'
22+
ref: stable
2223
path: ./actions
2324
- name: Install Actions
2425
run: npm install --production --prefix ./actions
2526
- name: Check for changed files
26-
uses: ./actions/pr-file-check
27+
uses: ./actions/python-pr-file-check

.github/workflows/pr-labels.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ jobs:
1616
- name: Checkout Actions
1717
uses: actions/checkout@v3
1818
with:
19-
repository: 'microsoft/vscode-python-engineering'
19+
repository: 'microsoft/vscode-github-triage-actions'
20+
ref: stable
2021
path: ./actions
2122
- name: Install Actions
2223
run: npm install --production --prefix ./actions
2324
- name: Classify PR
24-
uses: ./actions/pr-labels
25+
uses: ./actions/python-pr-labels

.github/workflows/triage-info-needed.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,13 @@ jobs:
1515
- name: Checkout Actions
1616
uses: actions/checkout@v3
1717
with:
18-
repository: 'microsoft/vscode-python-engineering'
18+
repository: 'microsoft/vscode-github-triage-actions'
19+
ref: stable
1920
path: ./actions
2021
- name: Install Actions
2122
run: npm install --production --prefix ./actions
2223
- name: Add "info-needed" label
23-
uses: ./actions/triage-info-needed
24+
uses: ./actions/python-triage-info-needed
2425
with:
2526
triagers: ${{ env.TRIAGERS }}
2627
action: 'add'
@@ -33,12 +34,13 @@ jobs:
3334
- name: Checkout Actions
3435
uses: actions/checkout@v3
3536
with:
36-
repository: 'microsoft/vscode-python-engineering'
37+
repository: 'microsoft/vscode-github-triage-actions'
38+
ref: stable
3739
path: ./actions
3840
- name: Install Actions
3941
run: npm install --production --prefix ./actions
4042
- name: Remove "info-needed" label
41-
uses: ./actions/triage-info-needed
43+
uses: ./actions/python-triage-info-needed
4244
with:
4345
triagers: ${{ env.TRIAGERS }}
4446
action: 'remove'

0 commit comments

Comments
 (0)