Skip to content

Commit 62c2bca

Browse files
authored
Merge branch 'main' into copilot/pass-api-token-to-mcp-tools
2 parents bcc35f6 + ca01a02 commit 62c2bca

4 files changed

Lines changed: 230 additions & 175 deletions

File tree

.github/workflows/check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Install uv
1717
uses: 'astral-sh/setup-uv@v7'
1818
with:
19-
version: "0.10.0"
19+
version: "0.10.2"
2020
enable-cache: true
2121

2222
- name: Setup Python
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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+
permissions:
16+
contents: read
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v6
20+
21+
- name: Install uv
22+
uses: astral-sh/setup-uv@v7
23+
with:
24+
version: "0.10.2"
25+
enable-cache: true
26+
27+
- name: Setup Python
28+
uses: actions/setup-python@v6
29+
with:
30+
python-version-file: "pyproject.toml"
31+
32+
- name: Install dependencies
33+
run: uv sync --all-packages

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Install uv
2121
uses: 'astral-sh/setup-uv@v7'
2222
with:
23-
version: "0.10.0"
23+
version: "0.10.2"
2424
enable-cache: true
2525

2626
- name: Setup Python

0 commit comments

Comments
 (0)