Skip to content

Commit 85ecb9b

Browse files
committed
Removes Copilot AI coding agent instructions
Removes the Copilot AI coding agent instructions and related files. Adds an agents guide to provide guidelines for AI agents, coding standards, and resilience. Adds a workflow for copilot setup steps.
1 parent a40041d commit 85ecb9b

File tree

5 files changed

+371
-139
lines changed

5 files changed

+371
-139
lines changed

.github/copilot-instructions.md

Lines changed: 0 additions & 30 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 & 36 deletions
This file was deleted.
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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: |
27+
8.0.x
28+
9.0.x
29+
10.0.x

0 commit comments

Comments
 (0)