python-boto3/.github/workflows/stale_issue.yml

52 lines
2.2 KiB
YAML
Raw Normal View History

2020-05-06 10:06:12 +02:00
name: "Close stale issues"
# Controls when the action will run.
on:
schedule:
2020-05-20 21:33:54 +02:00
- cron: "0 * * * *"
2020-05-06 10:06:12 +02:00
jobs:
issue-cleanup:
runs-on: ubuntu-latest
name: Stale issue job
steps:
2021-10-04 19:51:32 +02:00
- uses: aws-actions/stale-issue-cleanup@v4
2020-05-06 10:06:12 +02:00
with:
2021-10-04 19:51:32 +02:00
issue-types: issues
ancient-issue-message: Greetings! It looks like this issue hasnt been active in longer
than one year. We encourage you to check if this is still an issue in the latest release.
In the absence of more information, we will be closing this issue soon.
If you find that this is still a problem, please feel free to provide a comment or upvote
with a reaction on the initial post to prevent automatic closure. If the issue is already closed,
please feel free to open a new one.
stale-issue-message: Greetings! It looks like this issue hasnt been
active in longer than five days. We encourage you to check if this is still an issue in the latest release.
In the absence of more information, we will be closing this issue soon.
If you find that this is still a problem, please feel free to provide a comment or upvote
with a reaction on the initial post to prevent automatic closure. If the issue is already closed,
please feel free to open a new one.
2020-05-06 10:06:12 +02:00
# These labels are required
stale-issue-label: closing-soon
2021-10-04 19:51:32 +02:00
exempt-issue-labels: automation-exempt,needs-review,bug
2020-05-06 10:06:12 +02:00
response-requested-label: response-requested
# Don't set closed-for-staleness label to skip closing very old issues
# regardless of label
closed-for-staleness-label: closed-for-staleness
# Issue timing
2021-10-04 19:51:32 +02:00
days-before-stale: 5
days-before-close: 2
2021-09-22 18:34:33 +02:00
days-before-ancient: 365
2020-05-06 10:06:12 +02:00
# If you don't want to mark a issue as being ancient based on a
# threshold of "upvotes", you can set this here. An "upvote" is
# the total number of +1, heart, hooray, and rocket reactions
# on an issue.
minimum-upvotes-to-exempt: 1
repo-token: ${{ secrets.GITHUB_TOKEN }}
loglevel: DEBUG
# Set dry-run to true to not perform label or close actions.
2020-05-20 21:33:54 +02:00
# dry-run: true