Skip to content

Commit 7ae6c2e

Browse files
committed
Merge branch 'main' into copilot/add-integration-tests-weather-research
2 parents b1d9636 + 447ef33 commit 7ae6c2e

1 file changed

Lines changed: 37 additions & 0 deletions

File tree

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: "Copilot Setup Steps"
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
paths:
7+
- .github/workflows/copilot-setup-steps.yml
8+
pull_request:
9+
paths:
10+
- .github/workflows/copilot-setup-steps.yml
11+
12+
jobs:
13+
copilot-setup-steps:
14+
runs-on: ubuntu-latest
15+
16+
environment: copilot
17+
18+
permissions:
19+
contents: read
20+
21+
steps:
22+
- uses: actions/checkout@v6.0.3
23+
24+
- uses: pnpm/action-setup@v6.0.8
25+
26+
- uses: actions/setup-node@v6.4.0
27+
with:
28+
node-version: "24"
29+
cache: "pnpm"
30+
31+
- name: Expose secrets to environment
32+
run: |
33+
echo "ELYOS_API_KEY=${{ secrets.ELYOS_API_KEY }}" >> $GITHUB_ENV
34+
echo "OPENAI_API_KEY=${{ secrets.OPENAI_API_KEY }}" >> $GITHUB_ENV
35+
36+
- name: Install dependencies
37+
run: pnpm install --frozen-lockfile

0 commit comments

Comments
 (0)