We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fec8ded commit 058eb18Copy full SHA for 058eb18
1 file changed
.github/workflows/lock-issues.yml
@@ -15,9 +15,14 @@ jobs:
15
lock-issues:
16
runs-on: ubuntu-latest
17
steps:
18
- - uses: dessant/lock-threads@v4
+ - name: Checkout Actions
19
+ uses: actions/checkout@v3
20
with:
- github-token: ${{ github.token }}
21
- issue-inactive-days: '30'
22
- process-only: 'issues'
23
- log-output: true
+ repository: 'karrtikr/vscode-python-github-actions'
+ path: ./actions
+ - name: Install Actions
24
+ run: npm install --production --prefix ./actions
25
+ - name: 'Lock Issues'
26
+ uses: ./actions/lock-issues
27
+ with:
28
+ token: ${{ github.token }}
0 commit comments