We want to use a stable version of ubuntu, not ubuntu-latest which can change unexpectedly. This switches all the other (non-test) workflows to use ubuntu-22.04
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-22.04
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
steps:
|
|
- uses: osbuild/common-stale-action@main
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|