We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e63647c commit 5fb9526Copy full SHA for 5fb9526
.github/workflows/copilot-setup-steps.yml
@@ -0,0 +1,24 @@
1
+# https://docs.github.com/en/copilot/how-tos/use-copilot-agents/coding-agent/customize-the-agent-environment
2
+
3
+name: "Copilot Setup Steps"
4
5
+on:
6
+ workflow_dispatch:
7
+ push:
8
+ paths:
9
+ - .github/workflows/copilot-setup-steps.yml
10
+ pull_request:
11
12
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
+ contents: read
20
+ steps:
21
+ - uses: actions/checkout@v5
22
+ - uses: cachix/install-nix-action@v31
23
+ - uses: nicknovitski/nix-develop@v1
24
+ - run: ./test.bash
0 commit comments