Skip to content

Commit f584077

Browse files
committed
updates
2 parents 694857d + 6249626 commit f584077

File tree

16 files changed

+377
-137
lines changed

16 files changed

+377
-137
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: exceptionless

.github/copilot-instructions.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/instructions/general.instructions.md

Lines changed: 0 additions & 73 deletions
This file was deleted.

.github/instructions/testing.instructions.md

Lines changed: 0 additions & 37 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969

7070
steps:
7171
- name: Download Artifact
72-
uses: actions/download-artifact@v6
72+
uses: actions/download-artifact@v7
7373
with:
7474
name: packages
7575

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: "Copilot Setup"
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+
16+
permissions:
17+
contents: read
18+
19+
steps:
20+
- name: Checkout code
21+
uses: actions/checkout@v6
22+
23+
- name: Setup .NET Core
24+
uses: actions/setup-dotnet@v5
25+
with:
26+
dotnet-version: 10.0.x

0 commit comments

Comments
 (0)