Close stale issues #1252
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2021 OpenSSF Scorecard Authors | |
# | |
# Licensed 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 issues" | |
on: | |
schedule: | |
- cron: "30 1 * * *" | |
permissions: read-all | |
jobs: | |
stale: | |
permissions: | |
issues: write | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v1 | |
with: | |
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs | |
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e # v3.0.18 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-message: 'This issue has been marked stale because it has been open for 60 days with no activity.' | |
stale-pr-message: 'This pull request has been marked stale because it has been open for 10 days with no activity' | |
exempt-issue-labels: 'priority/must-do,kind/bug,good first issue,help wanted' | |
exempt-issue-milestones: 'Structured results' | |
exempt-pr-labels: 'awaiting-approval' | |
days-before-pr-stale: '10' | |
days-before-pr-close: '20' | |
days-before-issue-stale: '60' | |
days-before-issue-close: -1 | |
operations-per-run: '100' |