Mark stale issues and pull requests #20
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. | |
# | |
# You can adjust the behavior by modifying this file. | |
# For more information, see: | |
# https://github.com/actions/stale | |
name: Mark stale issues and pull requests | |
on: | |
schedule: | |
- cron: '0 */6 * * *' | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
pull-requests: write | |
steps: | |
- uses: actions/stale@v5 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
days-before-pr-stale: 90 | |
days-before-pr-close: 91 | |
stale-pr-label: 'no-pr-activity' | |
close-pr-label: 'auto-close' | |
stale-pr-message: > | |
This pull request has been inactive for 90 days. If you are finished with your changes, don't forget to sign off. See the [contributor guide](https://review.learn.microsoft.com/help/contribute/contribute-how-to-write-pull-request-automation) for instructions. | |
<br/> | |
<br/>If this PR is inactive for 1 more day, it will be closed automatically. Thank you! | |
<br/> | |
<br/>Microsoft Entra Content Team [Contact Us](mailto:apexidcontent@microsoft.com) | |
close-pr-message: > | |
<br/>This pull request has been inactive for 91 days. At this time, we're closing the PR. | |
<br/> | |
<br/>If you decide to continue working on your change, you can reopen the PR and continue working. Thank you! | |
<br/> | |
<br/>Microsoft Entra Content Team [Contact Us](mailto:apexidcontent@microsoft.com) |