Actions: add workflow for marking and closing stale issues and PRs
Signed-off-by: Tomáš Hozza <thozza@redhat.com>
This commit is contained in:
parent
18c24c431b
commit
3b1e3ca9e1
1 changed files with 16 additions and 0 deletions
16
.github/workflows/stale-cleanup.yml
vendored
Normal file
16
.github/workflows/stale-cleanup.yml
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
name: Mark and close stale issues and PRs
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '0 4 * * *'
|
||||
|
||||
jobs:
|
||||
stale:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
issues: write
|
||||
pull-requests: write
|
||||
steps:
|
||||
- uses: osbuild/common-stale-action@main
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue