-
Notifications
You must be signed in to change notification settings - Fork 789
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/dev17.5' into merges/release/dev17.4-to-release…
…/dev17.5
- Loading branch information
Showing
453 changed files
with
26,856 additions
and
6,871 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
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
Validating CODEOWNERS rules …
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 @@ | ||
* @dotnet/fsharp-team-msft |
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 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
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,10 @@ | ||
--- | ||
name: Other issue | ||
about: Open an issue which does not belong to any categories above | ||
title: '' | ||
labels: [Needs-Triage] | ||
assignees: '' | ||
|
||
--- | ||
<!-- Please, provide a clear and concise description of what the problem is below: --> | ||
|
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,69 @@ | ||
name: Add all issues and PRs to F# project, assign milestone and labels | ||
|
||
on: | ||
issues: | ||
types: | ||
- opened | ||
- transferred | ||
pull_request_target: | ||
types: | ||
- opened | ||
branches: ['main'] | ||
|
||
permissions: | ||
issues: write | ||
repository-projects: write | ||
|
||
jobs: | ||
cleanup_old_runs: | ||
runs-on: ubuntu-20.04 | ||
if: github.event_name != 'pull_request_target' | ||
permissions: | ||
actions: write | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- name: Delete old workflow runs | ||
run: | | ||
_UrlPath="/repos/$GITHUB_REPOSITORY/actions/workflows" | ||
_CurrentWorkflowID="$(gh api -X GET "$_UrlPath" | jq '.workflows[] | select(.name == '\""$GITHUB_WORKFLOW"\"') | .id')" | ||
gh api -X GET "$_UrlPath/$_CurrentWorkflowID/runs" --paginate \ | ||
| jq '.workflow_runs[] | select(.status == "completed") | .id' \ | ||
| xargs -I{} gh api -X DELETE "/repos/$GITHUB_REPOSITORY/actions/runs"/{} | ||
add_to_project: | ||
name: Add issue to project | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
repository-projects: write | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
project-url: https://github.com/orgs/dotnet/projects/126/ | ||
github-token: ${{ secrets.REPO_PROJECT_PAT }} | ||
apply-label: | ||
runs-on: ubuntu-latest | ||
if: github.event_name != 'pull_request_target' | ||
steps: | ||
- uses: actions/github-script@v6 | ||
with: | ||
script: | | ||
github.rest.issues.addLabels({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
labels: ['Needs-Triage'] | ||
}) | ||
apply-milestone: | ||
runs-on: ubuntu-latest | ||
if: github.event_name != 'pull_request_target' | ||
steps: | ||
- uses: actions/github-script@v6 | ||
with: | ||
script: | | ||
github.rest.issues.update({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
milestone: 29 | ||
}) |
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,83 @@ | ||
name: Backport PR to branch | ||
on: | ||
issue_comment: | ||
types: [created] | ||
schedule: | ||
# once a day at 13:00 UTC | ||
- cron: '0 13 * * *' | ||
|
||
permissions: | ||
contents: write | ||
issues: write | ||
pull-requests: write | ||
|
||
jobs: | ||
cleanup_old_runs: | ||
if: github.event.schedule == '0 13 * * *' | ||
runs-on: ubuntu-20.04 | ||
permissions: | ||
actions: write | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- name: Delete old workflow runs | ||
run: | | ||
_UrlPath="/repos/$GITHUB_REPOSITORY/actions/workflows" | ||
_CurrentWorkflowID="$(gh api -X GET "$_UrlPath" | jq '.workflows[] | select(.name == '\""$GITHUB_WORKFLOW"\"') | .id')" | ||
# delete workitems which are 'completed'. (other candidate values of status field are: 'queued' and 'in_progress') | ||
gh api -X GET "$_UrlPath/$_CurrentWorkflowID/runs" --paginate \ | ||
| jq '.workflow_runs[] | select(.status == "completed") | .id' \ | ||
| xargs -I{} gh api -X DELETE "/repos/$GITHUB_REPOSITORY/actions/runs"/{} | ||
backport: | ||
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/backport to') | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Extract backport target branch | ||
uses: actions/github-script@v3 | ||
id: target-branch-extractor | ||
with: | ||
result-encoding: string | ||
script: | | ||
if (context.eventName !== "issue_comment") throw "Error: This action only works on issue_comment events."; | ||
// extract the target branch name from the trigger phrase containing these characters: a-z, A-Z, digits, forward slash, dot, hyphen, underscore | ||
const regex = /^\/backport to ([a-zA-Z\d\/\.\-\_]+)/; | ||
target_branch = regex.exec(context.payload.comment.body); | ||
if (target_branch == null) throw "Error: No backport branch found in the trigger phrase."; | ||
return target_branch[1]; | ||
- name: Post backport started comment to pull request | ||
uses: actions/github-script@v3 | ||
with: | ||
script: | | ||
const backport_start_body = `Started backporting to ${{ steps.target-branch-extractor.outputs.result }}: https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${process.env.GITHUB_RUN_ID}`; | ||
await github.issues.createComment({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
body: backport_start_body | ||
}); | ||
- name: Checkout repo | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: Run backport | ||
uses: ./eng/actions/backport | ||
with: | ||
target_branch: ${{ steps.target-branch-extractor.outputs.result }} | ||
auth_token: ${{ secrets.GITHUB_TOKEN }} | ||
pr_description_template: | | ||
Backport of #%source_pr_number% to %target_branch% | ||
/cc %cc_users% | ||
## Customer Impact | ||
## Testing | ||
## Risk | ||
IMPORTANT: Is this backport for a servicing release? If so and this change touches code that ships in a NuGet package, please make certain that you have added any necessary [package authoring](https://github.com/dotnet/runtime/blob/main/docs/project/library-servicing.md) and gotten it explicitly reviewed. |
Oops, something went wrong.