File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed
Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments