1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
name: "Close stale PRs"
on:
schedule:
- cron: "10 11 * * *" # Run daily at 11:10 UTC
workflow_dispatch:
jobs:
mark-stale-prs:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v10
with:
stale-pr-message: "Thank you for your contribution. Unfortunately, this pull request has been marked as stale because it has had no activity in the past 365 days. Please remove the stale label or comment below, or this PR will be closed in 14 days. Feel free to re-open this if it has been closed in error. If you do not have repository permissions to reopen the PR, please tag a maintainer."
stale-pr-label: "Status: stale-warning"
days-before-pr-stale: 365
days-before-pr-close: -1
exempt-pr-labels: "Status: stale-warning"
# exclude issues
days-before-issue-stale: -1
days-before-issue-close: -1
repo-token: ${{ secrets.GITHUB_TOKEN }}
ascending: true
close-stale-prs:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v10
with:
stale-pr-label: "Status: stale-warning"
only-pr-labels: "Status: stale-warning"
days-before-pr-stale: 365
days-before-pr-close: 14
# exclude issues
days-before-issue-stale: -1
days-before-issue-close: -1
repo-token: ${{ secrets.GITHUB_TOKEN }}
ascending: true
mark-stale-issues-usage:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v10
with:
# exclude PRs
days-before-pr-stale: -1
days-before-pr-close: -1
only-issue-labels: "Type: usage"
exempt-issue-labels: "Status: stale-warning"
stale-issue-message: "This issue has been marked as stale because it has had no activity in the past 365 days. Please remove the stale label or comment below, or this issue will be closed in 14 days. If this usage question has evolved into a feature request or docs update, please remove the 'Type: usage' label and add the 'Type: enhancement' label instead."
stale-issue-label: "Status: stale-warning"
days-before-issue-stale: 365
days-before-issue-close: -1
repo-token: ${{ secrets.GITHUB_TOKEN }}
ascending: true
close-stale-issues-usage:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v10
with:
# exclude PRs
days-before-pr-stale: -1
days-before-pr-close: -1
only-issue-labels: "Type: usage, Status: stale-warning"
stale-issue-label: "Status: stale-warning"
days-before-issue-stale: 365
days-before-issue-close: 14
repo-token: ${{ secrets.GITHUB_TOKEN }}
ascending: true
mark-stale-issues-enhancement:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v10
with:
# exclude PRs
days-before-pr-stale: -1
days-before-pr-close: -1
only-issue-labels: "Type: enhancement"
exempt-issue-labels: "Status: stale-warning, Status: needs champion"
stale-issue-message: "This issue has been marked as stale because it has had no activity in the past 365 days. Please remove the stale label or comment below, or this issue will be closed in 14 days. If this improvement is still desired but has no current owner, please add the 'Status: needs champion' label."
stale-issue-label: "Status: stale-warning"
days-before-issue-stale: 365
days-before-issue-close: -1
repo-token: ${{ secrets.GITHUB_TOKEN }}
ascending: true
close-stale-issues-enhancement:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v10
with:
# exclude PRs
days-before-pr-stale: -1
days-before-pr-close: -1
only-issue-labels: "Type: enhancement, Status: stale-warning"
exempt-issue-labels: "Status: needs champion"
stale-issue-label: "Status: stale-warning"
days-before-issue-stale: 365
days-before-issue-close: 14
repo-token: ${{ secrets.GITHUB_TOKEN }}
ascending: true
|