Add labeler and updates issues templates

This commit is contained in:
lowlighter
2021-01-10 02:37:12 +01:00
parent b0a8dd8bff
commit 548a718154
7 changed files with 130 additions and 23 deletions

View File

@@ -6,13 +6,17 @@ on:
jobs:
stale:
name: Flag stale issues and pull requests
runs-on: ubuntu-latest
steps:
- name: Flag stale issues and pull requests
uses: actions/stale@v3
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: This issue has been open 30 days without activity. It will be closed in 5 days if it remains inactive.
stale-pr-message: This pull request has been open 30 days without activity. It will be closed in 5 days if it remains inactive.
days-before-stale: 30
days-before-close: 5
stale-issue-message: This issue seems to be inactive and will be automatically closed in a few days if it remains without any activity.
stale-pr-message: This pull request seems to be inactive and will be automatically closed in a few days if it remains without any activity.
days-before-stale: 21
days-before-close: 3
stale-issue-label: stale
stale-pr-label: stale
remove-stale-when-updated: yes
operations-per-run: 100