Check for Stale Pull Requests #5448
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 (C) 2022-2023 Maxim Integrated Products, Inc. (now owned by | |
# Analog Devices, Inc.), | |
# Copyright (C) 2023-2024 Analog Devices, Inc. | |
# | |
# 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: Check for Stale Pull Requests | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
# Schedule workflow on timer | |
on: | |
schedule: | |
# 'min hr day-of-month month day-of-week' | |
# Current schedule to run is: Every two hours of every day. | |
- cron: '0 0/2 * * *' | |
permissions: | |
contents: write | |
pull-requests: write | |
env: | |
MSDK_DIR: msdk | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# Check for stale PRs | |
stale: | |
# The type of runner that the job will run on | |
runs-on: [ ubuntu-latest ] | |
steps: | |
- name: Checking for Stale Pull Requests | |
uses: actions/stale@v8 | |
with: | |
# Issues won't get stale | |
days-before-issue-stale: -1 | |
days-before-pr-stale: 30 | |
days-before-pr-close: 7 | |
stale-pr-message: 'This pull request is stale because it has been open for 30 days with no activity. Remove stale label, commit, or comment or this will be closed in 7 days.' | |
close-pr-message: 'This pull request was closed because it has been stalled for 7 days with no activity.' | |
exempt-pr-labels: 'WIP' | |
# False is default option, but adding to be explicit. | |
delete-branch: false |