├── .github └── workflows │ └── backport.yml └── README.md /.github/workflows/backport.yml: -------------------------------------------------------------------------------- 1 | name: Backport PR to branch 2 | on: 3 | issue_comment: 4 | types: [created] 5 | 6 | permissions: 7 | contents: write 8 | issues: write 9 | pull-requests: write 10 | actions: write 11 | 12 | jobs: 13 | backport: 14 | uses: dotnet/arcade/.github/workflows/backport-base.yml@main 15 | with: 16 | pr_description_template: | 17 | Backport of #%source_pr_number% to %target_branch% 18 | 19 | /cc %cc_users% -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Repository Consolidation 2 | 3 | Going forward, the .NET SDK team is using the [dotnet/sdk](https://github.com/dotnet/sdk) repository for further development and respond to issues formerly in this repository. 4 | 5 | For finding the latest installers table and other installation information, see the [Installing the SDK](https://github.com/dotnet/sdk#installing-the-sdk) section in that repository's readme. 6 | --------------------------------------------------------------------------------