-
Notifications
You must be signed in to change notification settings - Fork 763
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into enpolat/getsecret-helper-in-bicepparam-files
- Loading branch information
Showing
364 changed files
with
188,686 additions
and
176,132 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,27 @@ | ||
id: automergeTriggers | ||
name: GitOps.PullRequestIssueManagement | ||
description: Handles enabling / disabling automerge | ||
owner: | ||
resource: repository | ||
disabled: false | ||
where: | ||
configuration: | ||
resourceManagementConfiguration: | ||
eventResponderTasks: | ||
- description: Enable Auto Merge when the "auto-merge" label is present | ||
if: | ||
- payloadType: Pull_Request | ||
- hasLabel: | ||
label: auto-merge | ||
then: | ||
- enableAutoMerge: | ||
mergeMethod: Squash | ||
- description: Disable Auto Merge when the "auto-merge" label is not present | ||
if: | ||
- payloadType: Pull_Request | ||
- labelRemoved: | ||
label: auto-merge | ||
then: | ||
- disableAutoMerge | ||
onFailure: | ||
onSuccess: |
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,26 @@ | ||
id: labelAdded.dependabot | ||
name: GitOps.PullRequestIssueManagement | ||
description: Handles when "dependencies" label is added by dependabot | ||
owner: | ||
resource: repository | ||
disabled: false | ||
where: | ||
configuration: | ||
resourceManagementConfiguration: | ||
eventResponderTasks: | ||
- description: Approve PRs submitted by dependabot with the "dependencies" label | ||
if: | ||
- payloadType: Pull_Request | ||
- hasLabel: | ||
label: dependencies | ||
- not: | ||
hasLabel: | ||
label: auto-merge | ||
- isActivitySender: | ||
user: dependabot[bot] | ||
issueAuthor: False | ||
then: | ||
- approvePullRequest: | ||
comment: ':shipit:' | ||
onFailure: | ||
onSuccess: |
Oops, something went wrong.