mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-27 11:43:37 +08:00
c844eea661
This file should be modified through pull requests. This reverts commitbc71f0937b
. This reverts commit99cac0b1b9
. This reverts commit0f0da3c3d8
.
26 lines
680 B
YAML
26 lines
680 B
YAML
name: 'Lock threads'
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 18 * * 1'
|
|
# │ │ │ │ │
|
|
# min 0-59 ┘ │ │ │ └ weekday 0-6
|
|
# hour 0-23 ┘ │ └ month 1-12
|
|
# └ day 1-31
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
lock:
|
|
permissions:
|
|
issues: write # for dessant/lock-threads to lock issues
|
|
pull-requests: write # for dessant/lock-threads to lock PRs
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: dessant/lock-threads@v2
|
|
with:
|
|
github-token: ${{ github.token }}
|
|
issue-lock-inactive-days: '365'
|
|
pr-lock-inactive-days: '365'
|
|
issue-exclude-labels: 'question, needs more info'
|