Skip to content

Commit b19934e

Browse files
authored
Merge branch 'main' into jpmunz/react-native-example-docs
2 parents 4c1df46 + f765d42 commit b19934e

File tree

74 files changed

+1657
-866
lines changed

Some content is hidden

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

74 files changed

+1657
-866
lines changed

.cspell.yml

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ dictionaries:
4040
# Natural languages
4141
- es-es
4242
- pt-br
43+
- fr-fr
4344
# Local word lists
4445
- en-words
4546
- es-palabras

.cspell/fr-mots.txt

+2-211
Original file line numberDiff line numberDiff line change
@@ -1,213 +1,4 @@
1-
analyse
2-
analyser
3-
avec
4-
collecter
5-
collectez
6-
comportement
7-
contenant
8-
créez
9-
dans
10-
découvrez
11-
définie
12-
démo
13-
dessous
14-
données
15-
d'utiliser
16-
efficace
17-
entièrement
18-
être
19-
générer
20-
gratuit
21-
indépendant
22-
instrumenter
23-
intégrations
24-
langages
25-
librairies
26-
logiciels
27-
métriques
28-
nombreux
29-
nombreuses
1+
extensibilité
302
observabilité
31-
outils
32-
permet
33-
permettant
34-
projet
35-
projets
36-
peut
37-
qualité
38-
savoir
39-
s'intègre
40-
supporte
41-
supporté
42-
tant
433
télémétrie
44-
transmettez
45-
universelle
46-
utilisé
47-
visuel
48-
votre
49-
vous
50-
l'état
51-
système
52-
incluent
53-
rendre
54-
signifie
55-
émettre
56-
metriques
57-
produites
58-
doivent
59-
transmises
60-
Pourquoi
61-
l'essor
62-
commerciales
63-
besoin
64-
répond
65-
suivant
66-
principes
67-
clés
68-
propriétaire
69-
générez
70-
dépendance
71-
fournisseur
72-
n'avez
73-
d'apprendre
74-
seul
75-
combinés
76-
offrent
77-
équipes
78-
organisations
79-
flexibilité
80-
dont
81-
informatique
82-
Extensibilité
83-
conçu
84-
extensible
85-
Quelques
86-
façon
87-
étendu
88-
Ajouter
89-
receveur
90-
Collecteur
91-
afin
92-
prendre
93-
venant
94-
personnalisée
95-
bibliothèques
96-
personnalisées
97-
Créer
98-
collecteur
99-
adaptée
100-
utilisation
101-
spécifique
102-
nouvel
103-
exportateur
104-
personnalisé
105-
prend
106-
propagateur
107-
contexte
108-
plupart
109-
utilisateurs
110-
n'aient
111-
d'étendre
112-
presque
113-
tous
114-
niveaux
115-
Histoire
116-
trouve
117-
antérieurs
118-
créés
119-
résoudre
120-
même
121-
problème
122-
norme
123-
décrivant
124-
manière
125-
transmettre
126-
Aucun
127-
n'étant
128-
indépendante
129-
fusionné
130-
leurs
131-
offrant
132-
utilisez
133-
actuellement
134-
pouvez
135-
découvrir
136-
migrer
137-
ensuite
138-
commencer
139-
Lancez
140-
directement
141-
composants
142-
standardisé
143-
définissant
144-
sémantiques
145-
décrire
146-
langage
147-
implémentent
148-
spécifications
149-
écosystème
150-
instrumentent
151-
automatique
152-
génèrent
153-
requérir
154-
reçoit
155-
modifie
156-
autre
157-
Opérateur
158-
ressources
159-
Faas
160-
variété
161-
intègrent
162-
fournir
163-
défaut
164-
pris
165-
fournisseurs
166-
fournissent
167-
contribuent
168-
n’aient
169-
d’étendre
170-
conçus
171-
créer
172-
gérer
173-
telles
174-
outil
175-
compris
176-
ainsi
177-
commerciaux
178-
d'autres
179-
génération
180-
collecte
181-
gestion
182-
objectifs
183-
principaux
184-
pouvoir
185-
aisément
186-
systèmes
187-
quelque
188-
soit
189-
leur
190-
environnement
191-
d'exécution
192-
stockage
193-
visualisation
194-
sont
195-
intentionnellement
196-
laissés
197-
d'autres
198-
comprendre
199-
sortantes
200-
logiciel
201-
d’aujourd’hui
202-
souhaitez
203-
jetez
204-
oeil
205-
valeurs
206-
principaux
207-
suivants
208-
spécification
209-
communautaires
210-
brève
211-
êtes
212-
standardisée
213-
autres
4+
traçage

.github/workflows/pr-actions.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: PR actions
2+
# cSpell:ignore esac htmltest refcache nvmrc
23

34
on:
45
issue_comment:
@@ -29,9 +30,9 @@ jobs:
2930
- name: Extract action name
3031
id: extract_action_name
3132
run: |
32-
PR_ACTION=$(echo $COMMENT | grep -oP '/fix:\K[-_0-9a-z]+')
33+
PR_ACTION=$(echo $COMMENT | grep -oP '/fix:\K[:-_0-9a-z]+')
3334
echo "Action is $PR_ACTION"
34-
ACTION_NAMES="all|dict|expired|filenames|format|htmltest-config|i18n|markdown|refcache|submodules?|text"
35+
ACTION_NAMES="all|dict|expired|filenames|format|htmltest-config|i18n|markdown|refcache(:refresh)?|submodules?|text"
3536
if [[ ! "$PR_ACTION" =~ ^($ACTION_NAMES)$ ]]; then
3637
echo "Invalid action name: $PR_ACTION"
3738
echo "Action name should be one of: $ACTION_NAMES"
@@ -69,7 +70,7 @@ jobs:
6970

7071
- run: |
7172
case $PR_ACTION in
72-
all|refcache|text)
73+
all|refcache*|text)
7374
npm install --omit=optional
7475
;&
7576
*)
+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Survey on Merged PR by Non-Member
2+
3+
on:
4+
pull_request:
5+
types: [closed]
6+
7+
jobs:
8+
comment-on-pr:
9+
runs-on: ubuntu-latest
10+
if: github.event.pull_request.merged == true
11+
steps:
12+
- name: Check if user is a member of the org
13+
id: check-membership
14+
run: |
15+
USERNAME=$(jq -r '.pull_request.user.login' "$GITHUB_EVENT_PATH")
16+
ORG="${{ github.repository_owner }}"
17+
STATUS=$(gh api "orgs/$ORG/members/$USERNAME" --silent && echo "true" || echo "false")
18+
if [[ "$STATUS" == "true" ]]; then
19+
echo "MEMBER_FOUND=true" >> $GITHUB_ENV
20+
else
21+
echo "MEMBER_FOUND=false" >> $GITHUB_ENV
22+
fi
23+
env:
24+
GH_TOKEN: ${{ secrets.OPENTELEMETRYBOT_GITHUB_TOKEN }}
25+
26+
- name: Add comment to PR if author is not a member
27+
if: env.MEMBER_FOUND == 'false'
28+
run: |
29+
PR_NUMBER=${{ github.event.pull_request.number }}
30+
gh pr comment $PR_NUMBER --body "Thank you for your contribution! 🎉 We would like to hear from you about your experience contributing to OpenTelemetry by filling out this survey: https://forms.gle/WV58koUBGSG9HBY66"

.gitmodules

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
# cSpell:ignore docsy javaexamples
12
[submodule "themes/docsy"]
23
path = themes/docsy
34
url = https://github.com/google/docsy.git
4-
docsy-pin = v0.11.0-2-g68aa7b3
5+
docsy-pin = v0.11.0-22-g2f361b2b
56
docsy-note = "2024-04-01 Switching to google/docsy.git from cncf/docsy.git since we don't have any CNCF customizations."
67
docsy-reminder = "Ensure that any tag referenced by `docsy-pin` is present in the remote repo (url), otherwise add (push) the tags to the repo."
78
[submodule "content-modules/opentelemetry-specification"]
@@ -31,4 +32,4 @@
3132
[submodule "content-modules/opentelemetry-java-examples"]
3233
path = content-modules/opentelemetry-java-examples
3334
url = https://github.com/open-telemetry/opentelemetry-java-examples.git
34-
javaexamples-pin = 63cc9b4
35+
javaexamples-pin = cce0f6a

.htmltest.yml

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ IgnoreDirs:
1010
# DO NOT EDIT! IgnoreDirs list is auto-generated from markdown file front matter.
1111
# Ignore blog index pages for all locales and in all blog sections (top-level and years)
1212
- ^(../)?blog/(\d+/)?page/\d+
13+
# Ignore old blog posts
14+
- ^(../)?blog/20(19|21|22|23)/
1315
# TODO drop next lines after https://github.com/open-telemetry/opentelemetry.io/issues/5555 is fixed for these pages:
1416
- ^zh/docs/concepts/signals/baggage/
1517
- ^zh/docs/zero-code/php/

content/en/blog/2023/otel-arrow/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ aligning OpenTelemetry more closely with modern data pipelines that are
140140
increasingly pivoting towards Apache Arrow.
141141

142142
A specification for this protocol (OTEP 0156) can be found
143-
[here](https://github.com/open-telemetry/oteps/blob/main/text/0156-columnar-encoding.md).
143+
[here](https://github.com/open-telemetry/opentelemetry-specification/blob/main/oteps/0156-columnar-encoding.md).
144144
A reference implementation of the encoding/decoding function can be accessed
145145
[here](https://github.com/open-telemetry/otel-arrow).
146146

@@ -269,7 +269,7 @@ invaluable assistance.
269269
## Links
270270

271271
- OpenTelemetry Protocol with Apache Arrow Specification -
272-
[OTEP 0156](https://github.com/open-telemetry/oteps/blob/main/text/0156-columnar-encoding.md)
272+
[OTEP 0156](https://github.com/open-telemetry/opentelemetry-specification/blob/main/oteps/0156-columnar-encoding.md)
273273
- OpenTelemetry Protocol with Apache Arrow (encoder/decoder)
274274
[repository](https://github.com/open-telemetry/otel-arrow).
275275
- Receiver

0 commit comments

Comments
 (0)