Check for Stale Issues and Pull Requests #220
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
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time. | |
# | |
# NOTE: This file is automatically synchronized from Mu DevOps. Update the original file there | |
# instead of the file in this repo. | |
# | |
# - Mu DevOps Repo: https://github.com/microsoft/mu_devops | |
# - File Sync Settings: https://github.com/microsoft/mu_devops/blob/main/.sync/Files.yml | |
# | |
# Copyright (c) Microsoft Corporation. | |
# SPDX-License-Identifier: BSD-2-Clause-Patent | |
# | |
# You can adjust the behavior by modifying this file. | |
# For more information, see: | |
# https://github.com/actions/stale | |
name: Check for Stale Issues and Pull Requests | |
on: | |
schedule: | |
# At 23:35 on every day-of-week from Sunday through Saturday | |
# https://crontab.guru/#35_23_*_*_0-6 | |
- cron: '35 23 * * 0-6' | |
workflow_dispatch: | |
jobs: | |
check: | |
permissions: | |
issues: write | |
pull-requests: write | |
uses: microsoft/mu_devops/.github/workflows/Stale.yml@v12.2.0 |