microsoft/mu_feature_ffa
Publicmirrored from https://github.com/microsoft/mu_feature_ffaAvailable
.github/workflows/stale.yml
32lines · modecode
| 1 | # This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time. |
| 2 | # |
| 3 | # NOTE: This file is automatically synchronized from Mu DevOps. Update the original file there |
| 4 | # instead of the file in this repo. |
| 5 | # |
| 6 | # - Mu DevOps Repo: https://github.com/microsoft/mu_devops |
| 7 | # - File Sync Settings: https://github.com/microsoft/mu_devops/blob/main/.sync/Files.yml |
| 8 | # |
| 9 | # Copyright (c) Microsoft Corporation. |
| 10 | # SPDX-License-Identifier: BSD-2-Clause-Patent |
| 11 | # |
| 12 | # You can adjust the behavior by modifying this file. |
| 13 | # For more information, see: |
| 14 | # https://github.com/actions/stale |
| 15 | |
| 16 | name: Check for Stale Issues and Pull Requests |
| 17 | |
| 18 | on: |
| 19 | schedule: |
| 20 | # At 23:35 on every day-of-week from Sunday through Saturday |
| 21 | # https://crontab.guru/#35_23_*_*_0-6 |
| 22 | - cron: '35 23 * * 0-6' |
| 23 | workflow_dispatch: |
| 24 | |
| 25 | jobs: |
| 26 | check: |
| 27 | |
| 28 | permissions: |
| 29 | issues: write |
| 30 | pull-requests: write |
| 31 | |
| 32 | uses: microsoft/mu_devops/.github/workflows/Stale.yml@v15.0.2 |
| 33 | |