forked from MicrosoftDocs/cloud-adoption-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (26 loc) · 1.15 KB
/
stale.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Mark stale issues and pull requests
on:
schedule:
- cron: "0 */6 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-pr-stale: 14
days-before-pr-close: 365
stale-pr-label: inactive
close-pr-label: auto-close
exempt-pr-labels: keep-open
stale-pr-message: >
This pull request has been inactive for 14 days.
If you are finished with your changes, don't forget to sign off. For instructions, see the [contributor guide](https://review.docs.microsoft.com/en-us/help/contribute/contribute-how-to-write-pull-request-automation).
Cloud Adoption Framework team
[Contact Us](mailto:[email protected])
close-pr-message: >
This pull request has been inactive for 14 days. At this time, we are closing the PR.
If you decide to continue working on your change, you can reopen the PR and continue working. Thank you!
Cloud Adoption Framework team
[Contact Us](mailto:[email protected])