You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
286 B
18 lines
286 B
#
|
|
# lock-closed.yml
|
|
# Lock closed issues after a period of inactivity
|
|
#
|
|
|
|
name: "Lock closed issue"
|
|
|
|
on:
|
|
issues:
|
|
types: [closed]
|
|
|
|
jobs:
|
|
lock:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: OSDKDev/lock-issues@v1.1
|
|
with:
|
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
|
|