File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 1+ name : " Copilot Setup Steps"
2+
3+ # Allow testing of the setup steps from your repository's "Actions" tab.
4+ on : workflow_dispatch
5+
6+ jobs :
7+ # The job MUST be called `copilot-setup-steps` or it will not be picked up by Copilot.
8+ copilot-setup-steps :
9+ runs-on : ubuntu-latest
10+
11+ permissions :
12+ contents : read
13+
14+ # You can define any steps you want, and they will run before the agent starts.
15+ # If you do not check out your code, Copilot will do this for you.
16+ steps :
17+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
18+
19+ # Include PrepareForHelix to maximise what is downloaded here
20+ - name : Build solution
21+ env :
22+ # prevent GitInfo errors
23+ CI : false
24+ run : ./restore.sh
You can’t perform that action at this time.
0 commit comments