-
Notifications
You must be signed in to change notification settings - Fork 865
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'v2.1.0' into release/latest
- Loading branch information
Showing
344 changed files
with
6,964 additions
and
4,536 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,42 @@ | ||
id: | ||
name: GitOps.PullRequestIssueManagement | ||
description: GitOps.PullRequestIssueManagement primitive | ||
owner: | ||
resource: repository | ||
disabled: false | ||
where: | ||
configuration: | ||
resourceManagementConfiguration: | ||
scheduledSearches: [] | ||
eventResponderTasks: | ||
- if: | ||
- payloadType: Pull_Request | ||
- hasLabel: | ||
label: Auto-Merge | ||
then: | ||
- enableAutoMerge: | ||
mergeMethod: Squash | ||
description: | ||
- if: | ||
- payloadType: Pull_Request | ||
- labelRemoved: | ||
label: Auto-Merge | ||
then: | ||
- disableAutoMerge | ||
description: | ||
- if: | ||
- payloadType: Pull_Request | ||
- isAction: | ||
action: Opened | ||
- isActivitySender: | ||
user: dotnet-maestro[bot] | ||
issueAuthor: False | ||
- titleContains: | ||
pattern: Update dependencies | ||
isRegex: False | ||
then: | ||
- approvePullRequest: | ||
comment: Auto-approving dependency update. | ||
description: | ||
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,23 @@ | ||
name: Backport PR to branch | ||
on: | ||
issue_comment: | ||
types: [created] | ||
schedule: | ||
# once a day at 13:00 UTC to cleanup old runs | ||
- cron: '0 13 * * *' | ||
|
||
permissions: | ||
contents: write | ||
issues: write | ||
pull-requests: write | ||
actions: write | ||
|
||
jobs: | ||
backport: | ||
if: ${{ contains(github.event.comment.body, '/backport to') || github.event_name == 'schedule' }} | ||
uses: dotnet/arcade/.github/workflows/backport-base.yml@main | ||
with: | ||
pr_description_template: | | ||
Backport of #%source_pr_number% to %target_branch% | ||
/cc %cc_users% |
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,17 @@ | ||
{ | ||
"problemMatcher": [ | ||
{ | ||
"owner": "markdownlint", | ||
"pattern": [ | ||
{ | ||
"regexp": "^([^:]*):(\\d+):?(\\d+)?\\s([\\w-\\/]*)\\s(.*)$", | ||
"file": 1, | ||
"line": 2, | ||
"column": 3, | ||
"code": 4, | ||
"message": 5 | ||
} | ||
] | ||
} | ||
] | ||
} |
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 @@ | ||
name: Markdownlint | ||
|
||
permissions: | ||
contents: read | ||
|
||
# run even on changes without markdown changes, so that we can | ||
# make it in GitHub a required check for PR's | ||
on: | ||
pull_request: | ||
|
||
jobs: | ||
lint: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16.x | ||
- name: Run Markdownlint | ||
run: | | ||
echo "::add-matcher::.github/workflows/markdownlint-problem-matcher.json" | ||
npm i -g markdownlint-cli | ||
markdownlint "**.md" |
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,22 @@ | ||
{ | ||
"default": true, | ||
"ul-indent": false, | ||
"no-trailing-spaces": false, | ||
"line-length": false, | ||
"blanks-around-headings": false, | ||
"no-duplicate-heading": { "siblings_only": true }, | ||
"no-trailing-punctuation": false, | ||
"ol-prefix": { "one_or_ordered": true }, | ||
"blanks-around-fences": false, | ||
"blanks-around-lists": false, | ||
"no-inline-html": { "allowed_elements": [ "summary", "details" ]}, | ||
"no-bare-urls": false, | ||
"single-trailing-newline": false, | ||
"emphasis-style": false, | ||
"first-line-heading": false, | ||
"no-space-in-code": false, | ||
|
||
// rule settings and options are documented in https://github.com/DavidAnson/markdownlint | ||
// feel free to disable more low value rules in here; get rule name from the error message. | ||
// the purpose of the linter is to catch significant issues like broken links. | ||
} |
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
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
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
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
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
Oops, something went wrong.