We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd46734 commit 1d9cf27Copy full SHA for 1d9cf27
.github/workflows/copilot-setup-steps.yml
@@ -0,0 +1,22 @@
1
+name: "Copilot Setup Steps"
2
+
3
+# https://docs.github.com/en/copilot/how-tos/use-copilot-agents/coding-agent/customize-the-agent-environment#preinstalling-tools-or-dependencies-in-copilots-environment
4
+on:
5
+ workflow_dispatch:
6
+ push:
7
+ paths:
8
+ - .github/workflows/copilot-setup-steps.yml
9
+ pull_request:
10
11
12
13
+jobs:
14
+ copilot-setup-steps:
15
+ runs-on: ubuntu-latest
16
+ permissions:
17
+ contents: read
18
+ steps:
19
+ - name: Checkout code
20
+ uses: actions/checkout@v6
21
+ - name: Set up using pnpm
22
+ uses: oBusk/action-pnpm-setup@v1
0 commit comments