Skip to content

Commit deec3bc

Browse files
committed
Merge branch 'main' into a2a-api-extensions
2 parents 13f12b4 + 628380e commit deec3bc

File tree

214 files changed

+1295
-33424
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

214 files changed

+1295
-33424
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ body:
2727
id: terms
2828
attributes:
2929
label: Code of Conduct
30-
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/google/A2A?tab=coc-ov-file#readme)
30+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/google-a2a/A2A?tab=coc-ov-file#readme)
3131
options:
3232
- label: I agree to follow this project's Code of Conduct
3333
required: true

.github/ISSUE_TEMPLATE/feature-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ body:
3535
id: terms
3636
attributes:
3737
label: Code of Conduct
38-
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/google/A2A?tab=coc-ov-file#readme)
38+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/google-a2a/A2A?tab=coc-ov-file#readme)
3939
options:
4040
- label: I agree to follow this project's Code of Conduct
4141
required: true

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Thank you for opening a Pull Request!
44
Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
55

6-
- [ ] Follow the [`CONTRIBUTING` Guide](https://github.com/google/A2A/blob/main/CONTRIBUTING.md).
6+
- [ ] Follow the [`CONTRIBUTING` Guide](https://github.com/google-a2a/A2A/blob/main/CONTRIBUTING.md).
77
- [ ] Make your Pull Request title in the <https://www.conventionalcommits.org/> specification.
88
- [ ] Ensure the tests and linter pass (Run `nox -s format` from the repository root to format)
99
- [ ] Appropriate docs were updated (if necessary)

.github/actions/spelling/allow.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,12 @@ AServer
1313
AStarlette
1414
Autogen
1515
CAs
16+
CLIs
1617
Camry
1718
Cjava
1819
DDo
1920
DGT
21+
EBFF
2022
EUR
2123
EUg
2224
FBT
@@ -44,6 +46,7 @@ PLW
4446
PTH
4547
RUF
4648
SLF
49+
TMDB
4750
URLTo
4851
Upserting
4952
Urke
@@ -93,6 +96,7 @@ dde
9396
direnv
9497
efaab
9598
efbd
99+
embeddings
96100
evt
97101
excinfo
98102
fafd

.github/actions/spelling/excludes.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@
8585
^\Q.github/workflows/linter.yaml\E$
8686
^\Qdemo/ui/service/server/test_image.py\E$
8787
^\Qlychee.toml\E$
88-
\.gitignore\E$
8988
\.vscode/
9089
^\Qdocs/partners.md\E$
9190
^\Qspecification/json/a2a.json\E$
91+
CHANGELOG.md
92+
\.gitignore

.github/release-please.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
releaseType: simple
2+
handleGHRelease: true
3+
bumpMinorPreMajor: true
4+
bumpPatchForMinorPreMajor: true

.github/release-trigger.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
enabled: true
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Dispatch A2A JSON Update
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
paths:
8+
- "specification/json/a2a.json"
9+
10+
jobs:
11+
dispatch:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Dispatch repository_dispatch to a2a-python
15+
uses: peter-evans/repository-dispatch@v3
16+
with:
17+
token: ${{ secrets.A2A_BOT_PAT }}
18+
repository: google-a2a/a2a-python
19+
event-type: a2a_json_update
20+
client-payload: |
21+
{
22+
"ref": "${{ github.ref }}",
23+
"sha": "${{ github.sha }}",
24+
"message": "Updated 'specification/json/a2a.json' in google-a2a/A2A"
25+
}

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
contents: write
1919
actions: read
2020

21-
if: github.repository == 'google/A2A'
21+
if: github.repository == 'google-a2a/A2A'
2222

2323
steps:
2424
- name: Checkout Code

.github/workflows/links.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
linkChecker:
1111
runs-on: ubuntu-latest
1212
if: |
13-
github.repository == 'google/A2A'
13+
github.repository == 'google-a2a/A2A'
1414
1515
steps:
1616
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)