Skip to content

Commit fe6d8cd

Browse files
Add GitHub Actions workflow for Copilot setup
Introduces a new workflow named "Copilot Setup Steps" that can be triggered manually. The workflow runs on Ubuntu and includes steps for checking out the code and setting up .NET version 9.0.x.
1 parent b3c3f99 commit fe6d8cd

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
name: Copilot Setup Steps
3+
4+
on:
5+
workflow_dispatch
6+
7+
jobs:
8+
copilot-setup-steps:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
contents: read
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v5
15+
16+
- name: Setup .NET
17+
uses: actions/setup-dotnet@v5
18+
with:
19+
dotnet-version: '9.0.x'
20+

0 commit comments

Comments
 (0)