Skip to content

Commit abcb5ce

Browse files
authored
Move lock issues (microsoft#21580)
move logic for lock issue workflow back to python repo to avoid extra work of checking out and cloning vscode-github-triage-actions repo. Should reduce time it takes to run github actions.
1 parent 2024636 commit abcb5ce

File tree

1 file changed

+5
-12
lines changed

1 file changed

+5
-12
lines changed

.github/workflows/lock-issues.yml

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,10 @@ jobs:
1515
lock-issues:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- name: Checkout Actions
19-
uses: actions/checkout@v3
20-
with:
21-
repository: 'microsoft/vscode-github-triage-actions'
22-
ref: stable
23-
path: ./actions
24-
25-
- name: Install Actions
26-
run: npm install --production --prefix ./actions
27-
2818
- name: 'Lock Issues'
29-
uses: ./actions/python-lock-issues
19+
uses: dessant/lock-threads@v4
3020
with:
31-
token: ${{ github.token }}
21+
github-token: ${{ github.token }}
22+
issue-inactive-days: '30'
23+
process-only: 'issues'
24+
log-output: true

0 commit comments

Comments
 (0)