-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into reese-lee-patch-2
- Loading branch information
Showing
589 changed files
with
11,579 additions
and
3,481 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: i18n | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
check-i18n: | ||
name: I18N check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 # all | ||
- name: Any files missing hash key? | ||
run: scripts/check-i18n.sh -n -x -v | ||
- name: Any files with invalid hash keys? | ||
run: scripts/check-i18n.sh -v | ||
- run: .github/workflows/scripts/check-i18n-helper.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/bin/bash -e | ||
|
||
echo "For localization docs, see https://opentelemetry.io/docs/contributing/localization" | ||
|
||
CHANGES=`git status --porcelain` | ||
|
||
if [[ -z $CHANGES ]]; then | ||
echo "All localization pages have the requisit commit hash. <3" | ||
exit; | ||
fi | ||
|
||
cat <<EOS | ||
Some localization pages are missing the 'default_lang_commit' front matter | ||
field. To fix this in your local development environment, run | ||
npm run fix:i18n:new | ||
and commit the changes for your localization. Here are the list of pages that | ||
need to be updated: | ||
--- | ||
EOS | ||
|
||
echo "$CHANGES" | ||
echo "---" | ||
|
||
exit 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
[submodule "themes/docsy"] | ||
path = themes/docsy | ||
url = https://github.com/google/docsy.git | ||
docsy-pin = v0.9.1-17-gb077a74 | ||
docsy-pin = v0.10.0-6-g102892d | ||
docsy-note = "2024-04-01 Switching to google/docsy.git from cncf/docsy.git since we don't have any CNCF customizations." | ||
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." | ||
[submodule "content-modules/opentelemetry-specification"] | ||
path = content-modules/opentelemetry-specification | ||
url = https://github.com/open-telemetry/opentelemetry-specification.git | ||
spec-pin = v1.32.0 | ||
spec-pin = v1.34.0 | ||
[submodule "content-modules/community"] | ||
path = content-modules/community | ||
url = https://github.com/open-telemetry/community | ||
community-pin = f16a58e | ||
[submodule "content-modules/opentelemetry-proto"] | ||
path = content-modules/opentelemetry-proto | ||
url = https://github.com/open-telemetry/opentelemetry-proto | ||
otlp-pin = v1.3.0 | ||
otlp-pin = v1.3.1 | ||
[submodule "content-modules/semantic-conventions"] | ||
path = content-modules/semantic-conventions | ||
url = https://github.com/open-telemetry/semantic-conventions | ||
semconv-pin = v1.25.0 | ||
semconv-pin = v1.26.0 | ||
[submodule "content-modules/opamp-spec"] | ||
path = content-modules/opamp-spec | ||
url = https://github.com/open-telemetry/opamp-spec | ||
opamp-pin = v0.9.0-2-g950df29 | ||
[submodule "content-modules/opentelemetry-go"] | ||
path = content-modules/opentelemetry-go | ||
url = https://github.com/open-telemetry/opentelemetry-go | ||
go-pin = v1.23.0-rc.1-31-geabcef4c2 | ||
go-pin = v1.27.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.