Skip to content

Commit cf8ba10

Browse files
authored
Merge branch 'main' into nagilson-script-path-issue
2 parents babe5ee + 1f2ad79 commit cf8ba10

File tree

22 files changed

+3001
-1828
lines changed

22 files changed

+3001
-1828
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Copilot Setup Steps
2+
3+
# Automatically run the setup steps when they are changed to allow for easy validation, and
4+
# allow manual testing through the repository's "Actions" tab
5+
on:
6+
workflow_dispatch:
7+
push:
8+
paths:
9+
- .github/workflows/copilot-setup-steps.yml
10+
pull_request:
11+
paths:
12+
- .github/workflows/copilot-setup-steps.yml
13+
14+
permissions:
15+
contents: read
16+
17+
env:
18+
# Allow Copilot to access Visual Studio assets URLs needed for NuGet restore
19+
COPILOT_AGENT_FIREWALL_ALLOW_LIST_ADDITIONS: "vsblob.vsassets.io"
20+
21+
jobs:
22+
copilot-setup-steps:
23+
runs-on: ubuntu-latest
24+
steps:
25+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
26+
- name: Do an initial build to ensure all dependencies are restored
27+
run: |
28+
./build.sh

0 commit comments

Comments
 (0)