We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f52189 commit 855b6c4Copy full SHA for 855b6c4
.github/workflows/copilot-setup-steps.yml
@@ -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