Skip to content

Commit

Permalink
Actions: add workflow for marking and closing stale issues and PRs
Browse files Browse the repository at this point in the history
Signed-off-by: Tomáš Hozza <[email protected]>
  • Loading branch information
thozza authored and ondrejbudai committed Sep 7, 2023
1 parent 554c968 commit eb8b63f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/stale-cleanup.yml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit eb8b63f

Please sign in to comment.