Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,14 @@ on:
paths-ignore:
- README.md
- CHANGELOG.md
- .github/workflows/copilot-setup-steps.yml

pull_request:
branches: ["main"]
paths-ignore:
- README.md
- CHANGELOG.md
- .github/workflows/copilot-setup-steps.yml

jobs:
version:
Expand Down
27 changes: 27 additions & 0 deletions .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: "Copilot Setup Steps"

on:
workflow_dispatch:
pull_request:
branches: ["main"]
paths:
- .github/workflows/copilot-setup-steps.yml

jobs:
copilot-setup-steps:
runs-on: ubuntu-latest
permissions:
contents: read

steps:
- name: Checkout code
uses: actions/checkout@v5

- name: Setup .NET 9
uses: actions/setup-dotnet@v4
with:
dotnet-version: "9.0.x"

- name: Restore .NET dependencies
run: dotnet restore
working-directory: ./src
1 change: 1 addition & 0 deletions .github/workflows/docs-only.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
- "!**" # Exclude every file
- "README.md" # Except only readme changes
- "CHANGELOG.md" # And changelog changes
- ".github/workflows/copilot-setup-steps.yml"

jobs:
pr_complete:
Expand Down
Loading