firefly-iii/.github/workflows/lock.yml

20 lines
360 B
YAML
Raw Normal View History

2021-05-03 01:08:47 -05:00
name: Lock old issues
2021-05-02 08:00:40 -05:00
on:
2021-05-02 08:03:09 -05:00
workflow_dispatch:
2021-05-02 08:00:40 -05:00
schedule:
2021-05-03 01:08:47 -05:00
- cron: '0 0 * * *'
2021-05-02 08:00:40 -05:00
jobs:
lock:
permissions:
issues: write
pull-requests: write
2021-05-02 08:00:40 -05:00
runs-on: ubuntu-latest
steps:
- uses: JC5/lock-threads@main
2021-05-02 08:00:40 -05:00
with:
github-token: ${{ github.token }}
issue-inactive-days: 90
pr-inactive-days: 90