File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed
Expand file tree Collapse file tree 1 file changed +29
-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+ jobs :
15+ # The job MUST be called `copilot-setup-steps` or it will not be picked up by Copilot.
16+ copilot-setup-steps :
17+ runs-on : ubuntu-latest
18+ permissions :
19+ packages : read
20+
21+ steps :
22+ - name : Checkout code
23+ uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # pinned to 4.1.7
24+ with :
25+ fetch-depth : 0 # required to access tags
26+ submodules : ' true'
27+
28+ - name : Install Dependencies
29+ run : sudo .devcontainer/install-dependencies.sh
You can’t perform that action at this time.
0 commit comments