Skip to content

Commit c917a8f

Browse files
committed
minor edit
2 parents 737660f + e203c61 commit c917a8f

File tree

5,267 files changed

+61552
-48765
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

5,267 files changed

+61552
-48765
lines changed

.github/policies/disallow-edits.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -155,13 +155,16 @@ configuration:
155155
if:
156156
# If a 'sign-off' comment is added to a PR in the articles/reliability folder , and the PR author isn't Anastasia or John...
157157
- payloadType: Issue_Comment
158-
- isPullRequest
159158
- filesMatchPattern:
160159
matchAny: true
161160
pattern: articles/reliability/*
162-
- commentContains:
163-
pattern: \#sign-off
164-
isRegex: false
161+
- or:
162+
- commentContains:
163+
pattern: ^(#sign-off)$
164+
isRegex: True
165+
- commentContains:
166+
pattern: ^(\#sign-off)$
167+
isRegex: True
165168
- not:
166169
or:
167170
- isActivitySender:
@@ -181,14 +184,14 @@ configuration:
181184
- description: Write a message if the breadcrumb file is modified in the azure-docs-pr repository.
182185
if:
183186
- payloadType: Pull_Request
184-
- isAction:
185-
action: Opened
186-
- filesMatchPattern:
187+
- isAction:
188+
action: Opened
189+
- filesMatchPattern:
187190
matchAny: true
188191
pattern: bread/*
189192

190193
then:
191194
- addReply:
192195
reply: >-
193-
@${issueAuthor} - This PR modifies the breadcrumb file for the entire repository in this pull request; the breadcrumb supports 100s of services. Please make sure your changes to the breadcrumb file are intentional. Do not delete this file.
196+
@${issueAuthor} - This PR modifies the breadcrumb file for the entire repository: bread/toc.yml. This file supports the on-site navigation for 100s of services. Please make sure your changes to the breadcrumb file are intentional. Do not delete this file.
194197

.github/workflows/stale.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Mark stale 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+
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/stale@v3
18+
with:
19+
repo-token: ${{ secrets.GITHUB_TOKEN }}
20+
days-before-pr-stale: 14
21+
days-before-pr-close: 90
22+
stale-pr-label: inactive
23+
close-pr-label: auto-close
24+
exempt-pr-labels: keep-open
25+
operations-per-run: 1300
26+
ascending: false
27+
# start-date: '2021-03-19'
28+
stale-pr-message: >
29+
This pull request has been inactive for at least 14 days.
30+
31+
If you are finished with your changes, don't forget to sign off. See the [platform guide](https://review.learn.microsoft.com/help/platform/prmerger-hashtag-commands?branch=main) for instructions.
32+
33+
[Get Help](https://review.learn.microsoft.com/help/platform/help-options?branch=main)
34+
35+
[Learn Support Teams Channel](https://teams.microsoft.com/l/channel/19%3a7ecffca1166a4a3986fed528cf0870ee%40thread.skype/General?groupId=de9ddba4-2574-4830-87ed-41668c07a1ca&tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47)
36+
37+
[Resolve Merge Conflicts](https://review.learn.microsoft.com/help/contribute/resolve-merge-conflicts?branch=main)
38+
close-pr-message: >
39+
This pull request has been inactive for 90 days, and an `auto-close` label has been added. At this time, the system is closing the PR automatically. If you decide to continue working on your changes, scroll to the bottom of the pull request comments and select the **Reopen pull request** button.
40+
<br/>

.openpublishing.publish.config.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -242,12 +242,6 @@
242242
"branch": "main",
243243
"branch_mapping": {}
244244
},
245-
{
246-
"path_to_root": "azure-proactive-resiliency-library",
247-
"url": "https://github.com/Azure/Azure-Proactive-Resiliency-Library",
248-
"branch": "main",
249-
"branch_mapping": {}
250-
},
251245
{
252246
"path_to_root": "azure-sdk-for-go-samples",
253247
"url": "https://github.com/Azure-Samples/azure-sdk-for-go-samples",
@@ -590,6 +584,12 @@
590584
"branch": "main",
591585
"branch_mapping": {}
592586
},
587+
{
588+
"path_to_root": "laravel-tasks",
589+
"url": "https://github.com/Azure-Samples/laravel-tasks",
590+
"branch": "main",
591+
"branch_mapping": {}
592+
},
593593
{
594594
"path_to_root": "playwright-testing-service",
595595
"url": "https://github.com/microsoft/playwright-testing-service",

0 commit comments

Comments
 (0)