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

stale.yml « workflows « .github - github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2e4abd89e42f38f5b5aa98a6d9c167f3f44a1bac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: "Close stale issues"
on:
  schedule:
  - cron: "0 0 * * *"

jobs:
  stale:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/stale@v3
      with:
        repo-token: ${{ secrets.GITHUB_TOKEN }}
        debug-only: false
        exempt-all-milestones: true
        exempt-issue-labels: "blue-ticket, p1-urgent, p2-high, p3-medium, p4-low"
        days-before-stale: 30
        stale-issue-message: "This issue was marked stale because it has been open for 30 days with no activity. Remove the stale label or comment or this will be closed in 7 days."
        days-before-close: 7  
        close-issue-message: "The issue was marked as stale for 7 days and closed automatically."
        start-date: "2021-01-01T00:00:00Z"