Skip to content

Commit 5ab5e84

Browse files
Add GitHub Actions workflow for Copilot setup (#618)
1 parent 9627ae1 commit 5ab5e84

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

workflows/copilot-setup-steps.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: "Copilot Setup Steps"
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
paths:
7+
- .github/workflows/copilot-setup-steps.yml
8+
pull_request:
9+
paths:
10+
- .github/workflows/copilot-setup-steps.yml
11+
12+
jobs:
13+
copilot-setup-steps:
14+
runs-on: ubuntu-latest
15+
permissions:
16+
contents: read
17+
18+
steps:
19+
- name: Checkout code
20+
uses: actions/checkout@v4
21+
with:
22+
lfs: true # jeśli używasz Git LFS
23+
24+
- name: Setup .NET 9 SDK
25+
uses: actions/setup-dotnet@v3
26+
with:
27+
dotnet-version: '9.0.x'

0 commit comments

Comments
 (0)