Skip to content

Commit 8e18866

Browse files
committed
Merge remote-tracking branch 'origin/main' into add-claude-md
2 parents 168e916 + 7f107df commit 8e18866

501 files changed

Lines changed: 37551 additions & 20304 deletions

File tree

Some content is hidden

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

.github/component_owners.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,6 @@ components:
2525
instrumentation/opentelemetry-instrumentation-urllib3:
2626
- shalevr
2727

28-
instrumentation-genai/:
29-
- karthikscale3
30-
- lmolkova
31-
- lzchen
32-
- gyliu513
33-
- nirga
34-
- alizenhom
35-
- codefromthecrypt
36-
3728
processor/opentelemetry-processor-baggage:
3829
- codeboten
3930

@@ -45,8 +36,10 @@ components:
4536
- jj22ee
4637

4738
util/opentelemetry-util-genai:
39+
- Cirilla-zmh
4840
- DylanRussell
4941
- keith-decker
42+
- lmolkova
5043

5144
instrumentation-genai/opentelemetry-instrumentation-langchain:
5245
- zhirafovod
@@ -55,6 +48,9 @@ components:
5548
instrumentation-genai/opentelemetry-instrumentation-openai-agents-v2:
5649
- nagkumar91
5750

51+
instrumentation-genai/opentelemetry-instrumentation-openai-v2:
52+
- lmolkova
53+
5854
instrumentation-genai/opentelemetry-instrumentation-anthropic:
5955
- vasantteja
6056
- anirudha

.github/workflows/ci.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Do not edit this file.
2+
# This file is generated automatically by executing tox -e generate-workflows
3+
4+
name: CI
5+
6+
on:
7+
push:
8+
branches:
9+
- 'main'
10+
pull_request:
11+
12+
permissions:
13+
contents: read
14+
15+
concurrency:
16+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
17+
cancel-in-progress: true
18+
19+
jobs:
20+
misc:
21+
uses: ./.github/workflows/misc.yml
22+
lint:
23+
uses: ./.github/workflows/lint.yml
24+
tests:
25+
uses: ./.github/workflows/test.yml
26+
27+
check:
28+
if: always()
29+
needs:
30+
- misc
31+
- lint
32+
- tests
33+
runs-on: ubuntu-latest
34+
steps:
35+
- name: Decide whether the needed jobs succeeded or failed
36+
uses: re-actors/alls-green@release/v1
37+
with:
38+
jobs: ${{ toJSON(needs) }}

0 commit comments

Comments
 (0)