-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #202 from MicrosoftDocs/localden/policies
Add policies
- Loading branch information
Showing
6 changed files
with
218 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
id: | ||
name: GitOps.PullRequestIssueManagement | ||
description: GitOps.PullRequestIssueManagement primitive | ||
owner: | ||
resource: repository | ||
disabled: false | ||
where: | ||
configuration: | ||
resourceManagementConfiguration: | ||
eventResponderTasks: | ||
- description: Label community PRs | ||
if: | ||
- payloadType: Pull_Request | ||
- isAction: | ||
action: Opened | ||
- and: | ||
- not: | ||
activitySenderHasPermission: | ||
permission: Admin | ||
- not: | ||
activitySenderHasPermission: | ||
permission: Write | ||
- not: | ||
isActivitySender: | ||
user: github-actions[bot] | ||
- not: | ||
isActivitySender: | ||
user: github-actions | ||
- not: | ||
isActivitySender: | ||
user: azure-sdk | ||
- not: | ||
isActivitySender: | ||
user: dependabot | ||
- not: | ||
isActivitySender: | ||
user: microsoft-github-policy-service[bot] | ||
then: | ||
- addLabel: | ||
label: community-contribution | ||
|
||
- description: Label ref docs sync PRs from the microsoft-github-policy-service bot | ||
triggerOnOwnActions: true | ||
if: | ||
- payloadType: Pull_Request | ||
- isAction: | ||
action: Opened | ||
- isActivitySender: | ||
user: microsoft-github-policy-service[bot] | ||
- titleContains: | ||
pattern: Merge smoke-test into main | ||
isRegex: False | ||
then: | ||
- addLabel: | ||
label: ":octocat: auto-merge" | ||
|
||
- description: Label prod sync PRs from the microsoft-github-policy-service bot | ||
triggerOnOwnActions: true | ||
if: | ||
- payloadType: Pull_Request | ||
- isAction: | ||
action: Opened | ||
- isActivitySender: | ||
user: microsoft-github-policy-service[bot] | ||
- titleContains: | ||
pattern: Merge main into live | ||
isRegex: False | ||
then: | ||
- addLabel: | ||
label: ":octocat: auto-merge" | ||
|
||
- description: Label PRs from dependabot/dependabot[bot] | ||
if: | ||
- payloadType: Pull_Request | ||
- or: | ||
- isActivitySender: | ||
user: dependabot | ||
- isActivitySender: | ||
user: dependabot[bot] | ||
then: | ||
- addLabel: | ||
label: ":octocat: auto-merge" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
id: | ||
name: GitOps.PullRequestIssueManagement | ||
description: GitOps.PullRequestIssueManagement primitive | ||
owner: | ||
resource: repository | ||
disabled: false | ||
where: | ||
configuration: | ||
resourceManagementConfiguration: | ||
eventResponderTasks: | ||
- description: Approve and auto-squash-merge bot PRs to main labeled 'auto-merge' | ||
triggerOnOwnActions: true | ||
if: | ||
- payloadType: Pull_Request | ||
- labelAdded: | ||
label: ':octocat: auto-merge' | ||
- targetsBranch: | ||
branch: main | ||
- or: | ||
- isActivitySender: | ||
user: microsoft-github-policy-service[bot] | ||
then: | ||
- enableAutoMerge: | ||
mergeMethod: Squash | ||
- approvePullRequest: | ||
comment: "Approved; this PR will merge when all status checks pass." | ||
|
||
- description: Auto-merge policy service bot PRs to live labeled 'auto-merge' | ||
triggerOnOwnActions: true | ||
if: | ||
- payloadType: Pull_Request | ||
- labelAdded: | ||
label: ':octocat: auto-merge' | ||
- targetsBranch: | ||
branch: live | ||
- or: | ||
- isActivitySender: | ||
user: microsoft-github-policy-service[bot] | ||
then: | ||
- enableAutoMerge: | ||
mergeMethod: Merge | ||
- approvePullRequest: | ||
comment: "Approved; this PR will merge when all status checks pass." | ||
|
||
- description: Don't auto-merge PRs with 'auto-merge' label removed | ||
if: | ||
- payloadType: Pull_Request | ||
- labelRemoved: | ||
label: ':octocat: auto-merge' | ||
then: | ||
- disableAutoMerge |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
id: | ||
name: GitOps.PullRequestIssueManagement | ||
description: GitOps.PullRequestIssueManagement primitive | ||
owner: | ||
resource: repository | ||
disabled: false | ||
where: | ||
configuration: | ||
resourceManagementConfiguration: | ||
eventResponderTasks: | ||
- description: Add untriaged label to new issues | ||
if: | ||
- payloadType: Issues | ||
- isAction: | ||
action: Opened | ||
then: | ||
- addLabel: | ||
label: untriaged |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: GitOps.PullRequestIssueManagement - Scheduled PRs | ||
description: Creates pull requests on a schedule | ||
resource: repository | ||
|
||
where: | ||
configuration: | ||
resourceManagementConfiguration: | ||
scheduledSearches: | ||
- description: Push to main (scheduled sync) | ||
frequencies: | ||
- daily: | ||
time: 1:00 | ||
- daily: | ||
time: 9:00 | ||
- daily: | ||
time: 17:00 | ||
filters: [] | ||
actions: | ||
- createPullRequest: | ||
head: main | ||
base: live | ||
title: Merge main into live | ||
body: Please don't squash-merge this PR. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: GitOps.PullRequestIssueManagement - Scheduled PRs | ||
description: Creates pull requests on a schedule | ||
resource: repository | ||
|
||
where: | ||
configuration: | ||
resourceManagementConfiguration: | ||
scheduledSearches: | ||
- description: Push to main (scheduled sync) | ||
frequencies: | ||
- daily: | ||
time: 1:00 | ||
- daily: | ||
time: 9:00 | ||
- daily: | ||
time: 17:00 | ||
filters: [] | ||
actions: | ||
- createPullRequest: | ||
head: smoke-test | ||
base: main | ||
title: Merge smoke-test into main | ||
body: Please don't squash-merge this PR. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Stale issues | ||
description: Close needs-more-info issues that haven't had a response in 14 days | ||
resource: repository | ||
where: | ||
configuration: | ||
resourceManagementConfiguration: | ||
scheduledSearches: | ||
- frequencies: | ||
- daily: | ||
time: 12:00 | ||
filters: | ||
- isIssue | ||
- isOpen | ||
- hasLabel: | ||
label: needs-more-info | ||
- noActivitySince: | ||
days: 14 | ||
actions: | ||
- addReply: | ||
reply: This issue has been automatically closed due to no response from the original author. Feel free to reopen it if you have more information that can help us investigate the issue further. | ||
- closeIssue |