File tree 8 files changed +101
-0
lines changed
8 files changed +101
-0
lines changed Original file line number Diff line number Diff line change 33
33
ExcludedBranchList : ' ["branch1", "branch2"]'
34
34
secrets :
35
35
AccessToken : ${{ secrets.GITHUB_TOKEN }}
36
+
37
+
38
+
39
+
40
+
41
+
Original file line number Diff line number Diff line change
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
+
Original file line number Diff line number Diff line change 17
17
PayloadJson : ${{ toJSON(github) }}
18
18
secrets :
19
19
AccessToken : ${{ secrets.GITHUB_TOKEN }}
20
+
21
+
22
+
Original file line number Diff line number Diff line change 17
17
PayloadJson : ${{ toJSON(github) }}
18
18
secrets :
19
19
AccessToken : ${{ secrets.GITHUB_TOKEN }}
20
+
21
+
22
+
Original file line number Diff line number Diff line change 15
15
PayloadJson : ${{ toJSON(github) }}
16
16
secrets :
17
17
AccessToken : ${{ secrets.GITHUB_TOKEN }}
18
+
19
+
20
+
Original file line number Diff line number Diff line change
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 }}
Original file line number Diff line number Diff line change
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 }}
Original file line number Diff line number Diff line change
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 }}
You can’t perform that action at this time.
0 commit comments