Welcome to mirror list, hosted at ThFree Co, Russian Federation.

stale.yml « workflows « .github - github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 99ab51e3921069e80c4532095a10a95eab7cd0e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: Mark stale issues

on:
  schedule:
  - cron: "45 * * * *"

jobs:
  stale:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/stale@v3
      with:
        repo-token: ${{ secrets.GITHUB_TOKEN }}
        stale-issue-message: 'This issue is marked as stale, because it had no activity in the last 30 days. It will be closed in 5 days.'
        stale-issue-label: 'stale'
        exempt-issue-labels: 'enhancement,bug,investigate'
        days-before-stale: 30
        days-before-close: 5