Skip to content

Commit 2ad2583

Browse files
committed
update workflows
1 parent 876504b commit 2ad2583

8 files changed

+101
-0
lines changed

.github/workflows/AutoLabelAssign.yml

+6
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,9 @@ jobs:
3333
ExcludedBranchList: '["branch1", "branch2"]'
3434
secrets:
3535
AccessToken: ${{ secrets.GITHUB_TOKEN }}
36+
37+
38+
39+
40+
41+

.github/workflows/BuildValidation.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: PR has no warnings or errors
2+
3+
permissions:
4+
pull-requests: write
5+
statuses: write
6+
7+
on:
8+
issue_comment:
9+
types: [created]
10+
11+
jobs:
12+
13+
build-status:
14+
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-BuildValidation.yml@workflows-prod
15+
with:
16+
PayloadJson: ${{ toJSON(github) }}
17+
secrets:
18+
AccessToken: ${{ secrets.GITHUB_TOKEN }}
19+
20+
21+

.github/workflows/LiveMergeCheck.yml

+3
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,6 @@ jobs:
1717
PayloadJson: ${{ toJSON(github) }}
1818
secrets:
1919
AccessToken: ${{ secrets.GITHUB_TOKEN }}
20+
21+
22+

.github/workflows/PrFileCount.yml

+3
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,6 @@ jobs:
1717
PayloadJson: ${{ toJSON(github) }}
1818
secrets:
1919
AccessToken: ${{ secrets.GITHUB_TOKEN }}
20+
21+
22+

.github/workflows/ProtectedFiles.yml

+3
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,6 @@ jobs:
1515
PayloadJson: ${{ toJSON(github) }}
1616
secrets:
1717
AccessToken: ${{ secrets.GITHUB_TOKEN }}
18+
19+
20+

.github/workflows/Stale.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: (Scheduled) Mark stale pull requests
2+
3+
permissions:
4+
issues: write
5+
pull-requests: write
6+
7+
on:
8+
schedule:
9+
- cron: "0 */6 * * *"
10+
workflow_dispatch:
11+
12+
jobs:
13+
stale:
14+
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-Stale.yml@workflows-prod
15+
with:
16+
RunDebug: false
17+
RepoVisibility: ${{ github.repository_visibility }}
18+
secrets:
19+
AccessToken: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/StaleBranch.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: (Scheduled) Stale branch removal
2+
3+
permissions:
4+
contents: write
5+
6+
on:
7+
schedule:
8+
- cron: "0 */12 * * *"
9+
10+
workflow_dispatch:
11+
12+
13+
jobs:
14+
15+
stale-branch:
16+
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-StaleBranch.yml@workflows-prod
17+
with:
18+
PayloadJson: ${{ toJSON(github) }}
19+
RepoBranchSkipList: '[
20+
"ExampleBranch1",
21+
"ExampleBranch2"
22+
]'
23+
ReportOnly: true
24+
secrets:
25+
AccessToken: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/TierManagement.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Tier management
2+
3+
permissions:
4+
pull-requests: write
5+
contents: read
6+
7+
on:
8+
issue_comment:
9+
types: [created, edited]
10+
11+
jobs:
12+
13+
tier-mgmt:
14+
if: github.repository_visibility == 'private'
15+
uses: MicrosoftDocs/microsoft-365-docs/.github/workflows/Shared-TierManagement.yml@workflows-prod
16+
with:
17+
PayloadJson: ${{ toJSON(github) }}
18+
EnableWriteSignOff: 1
19+
EnableReadOnlySignoff: 1
20+
secrets:
21+
AccessToken: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)