Skip to content

Commit 855b6c4

Browse files
authored
Add copilot setup steps (#885)
1 parent 5f52189 commit 855b6c4

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: "Copilot Setup Steps"
2+
3+
on: workflow_dispatch
4+
5+
jobs:
6+
# The job MUST be called `copilot-setup-steps` or it will not be picked up by Copilot.
7+
copilot-setup-steps:
8+
runs-on: ubuntu-latest
9+
10+
permissions:
11+
contents: read
12+
13+
steps:
14+
- uses: actions/checkout@v5
15+
16+
- name: Install .NET 10.x
17+
uses: actions/setup-dotnet@v5
18+
with:
19+
dotnet-version: |
20+
10.0.100-rc.1.25451.107
21+
dotnet-quality: preview
22+
23+
- name: dotnet --info
24+
run: dotnet --info

0 commit comments

Comments
 (0)