Skip to content

Commit f57994a

Browse files
authored
Merge pull request #53579 from ttorble/restore-config-files
Recreate deleted files
2 parents 265f908 + 7de9050 commit f57994a

2 files changed

Lines changed: 55 additions & 0 deletions

File tree

.github/CONTRIBUTING

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Notice: Repository Not Currently Accepting Public Contributions
2+
Thank you for your interest in contributing to the 'MicrosoftDocs/learn' repository. Your enthusiasm and support for the project are greatly appreciated. However, please be aware that we are not currently accepting public contributions to this repository.
3+
4+
While this may be disappointing, this decision has been made to ensure the consistency of the content within the repository. The repository is publicly available for Instructor Led Training purposes, and we encourage you to continue exploring the project.
5+
6+
Stay tuned for any updates regarding contributions in the future. We appreciate your understanding.
7+
8+
External users can provide feedback by clicking on the Report an issue email alias located at the bottom of any learning unit. The English alias is [email protected]. If the user is viewing the site in any other language, they will be able to access the localized versions of the alias. Although this is one-way feedback, the content, engineering, and localization teams review and triage all incoming feedback on a daily basis.
9+
10+
Microsoft Employees: Please review Getting Started with Microsoft Learn

.github/workflows/stale.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: Mark stale issues and pull requests
2+
3+
permissions:
4+
issues: write
5+
pull-requests: write
6+
7+
on:
8+
schedule:
9+
- cron: "0 */6 * * *"
10+
11+
jobs:
12+
stale:
13+
if: github.repository_owner == 'MicrosoftDocs'
14+
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/stale@v3
19+
with:
20+
repo-token: ${{ secrets.GITHUB_TOKEN }}
21+
days-before-pr-stale: 90
22+
days-before-pr-close: 30
23+
stale-pr-label: inactive
24+
close-pr-label: auto-close
25+
exempt-pr-labels: keep-open
26+
stale-pr-message: >
27+
This pull request has been inactive for 90 days.
28+
If you are finished with your changes don’t forget to add `#sign-off` to a comment in your PR to publish your changes.
29+
If this PR is inactive/stale for 30 more days, it will be closed automatically. Thank you!
30+
31+
Learn Team
32+
33+
[Need Help](https://review.learn.microsoft.com/en-us/help/contribute/help-options?branch=main)
34+
35+
[Resolve Merge Conflict](https://review.learn.microsoft.com/en-us/help/contribute/resolve-merge-conflicts?branch=main)
36+
close-pr-message: >
37+
This pull request has been inactive for 120 days.
38+
At this time, we are closing the PR.
39+
If you decide to continue working on your change, you can reopen the PR and continue working. Thank you!
40+
41+
Learn Team
42+
43+
[Need Help](https://review.learn.microsoft.com/en-us/help/contribute/help-options?branch=main)
44+
45+
[Resolve Merge Conflict](https://review.learn.microsoft.com/en-us/help/contribute/resolve-merge-conflicts?branch=main)

0 commit comments

Comments
 (0)