"...git@developer.sourcefind.cn:OpenDAS/openpcdet.git" did not exist on "b6f114e581484b1d303cf3798bc2f34764306036"
Unverified Commit e6851409 authored by Martin Hahner's avatar Martin Hahner Committed by GitHub
Browse files

Create close_stale_issues.yml (#813)

parent 1f261421
# https://github.com/actions/stale
# https://github.com/marketplace/actions/close-stale-issues
# https://docs.github.com/en/actions/managing-issues-and-pull-requests/closing-inactive-issues
name: close stale issues
on:
schedule:
- cron: "30 1 * * *"
jobs:
close-issues:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v4.1.0
with:
days-before-issue-stale: 30
days-before-issue-close: 14
stale-issue-label: "stale"
stale-issue-message: "This issue is stale because it has been open for 30 days with no activity."
close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale."
days-before-pr-stale: -1
days-before-pr-close: -1
repo-token: ${{ secrets.GITHUB_TOKEN }}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment