Pin the os version at 24.04 to avoid unexpected changes that can happen when using ubuntu-latest
16 lines
306 B
YAML
16 lines
306 B
YAML
name: Mark and close stale issues and PRs
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 4 * * *'
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-24.04
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
steps:
|
|
- uses: osbuild/common-stale-action@main
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|