Skip to content

Commit

Permalink
Use microsoft/vscode-github-triage-actions instead
Browse files Browse the repository at this point in the history
  • Loading branch information
Kartik Raj committed May 4, 2023
1 parent 0697223 commit 6a5402d
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 14 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/community-feedback-auto-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
5 changes: 3 additions & 2 deletions .github/workflows/issue-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/lock-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
5 changes: 3 additions & 2 deletions .github/workflows/pr-file-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
5 changes: 3 additions & 2 deletions .github/workflows/pr-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
10 changes: 6 additions & 4 deletions .github/workflows/triage-info-needed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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'
Expand Down

0 comments on commit 6a5402d

Please sign in to comment.