Skip to content

Close stale issues and pull requests #344

Close stale issues and pull requests

Close stale issues and pull requests #344

Workflow file for this run

#
# 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.
# This is copied from https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/.github/workflows/close-stale.yaml
name: "Close stale issues and pull requests"
on:
schedule:
- cron: "12 5 * * *" # arbitrary time not to DDOS GitHub
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-pr-message: 'This PR was marked stale due to lack of activity. It will be closed in 14 days.'
close-pr-message: 'Closed as inactive. Feel free to reopen if this PR is still being worked on.'
close-issue-message: 'This issue has been closed as inactive because it has been stale for 120 days with no activity.'
close-issue-label: 'closed as inactive'
days-before-pr-stale: 14
days-before-issue-stale: -1 # Stale label is applied by mark-issues-as-stale.yml
days-before-pr-close: 14
days-before-issue-close: 60
exempt-issue-labels: 'never stale'