mirror of
https://github.com/containers/podman.git
synced 2026-03-19 15:18:44 -04:00
Rephrase the stale message to be friendlier and bump the closing time to 365 days. The docs of the stale workflow do not indicate whether we can not close, so a limit of 365 days seems fair. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
25 lines
671 B
YAML
25 lines
671 B
YAML
name: Mark stale issues and pull requests
|
|
|
|
# Please refer to https://github.com/actions/stale/blob/master/action.yml
|
|
# to see all config knobs of the stale action.
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
|
|
jobs:
|
|
stale:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/stale@v1
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
stale-issue-message: 'A friendly reminder that this issue had no activity for 30 days.'
|
|
stale-pr-message: 'A friendly reminder that this PR had no activity for 30 days.'
|
|
stale-issue-label: 'stale-issue'
|
|
stale-pr-label: 'stale-pr'
|
|
days-before-stale: 30
|
|
days-before-close: 365
|