-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
633 changed files
with
11,564 additions
and
3,028 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
Validating CODEOWNERS rules …
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,93 @@ | ||
blog: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- content/en/blog/** | ||
registry: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- data/registry/** | ||
lang:zh: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- content/zh/** | ||
lang:ja: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- content/ja/** | ||
sig:cpp: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- content/en/docs/languages/cpp/** | ||
sig:erlang: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- content/en/docs/languages/erlang/** | ||
sig:go: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- content/en/docs/languages/go/** | ||
sig:java: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- content/en/docs/languages/java/** | ||
- content/en/docs/zero-code/java/** | ||
sig:js: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- content/en/docs/languages/js/** | ||
- content/en/docs/zero-code/js/** | ||
sig:dotnet: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- content/en/docs/languages/net/** | ||
- content/en/docs/zero-code/net/** | ||
sig:php: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- content/en/docs/languages/php/** | ||
- content/en/docs/zero-code/php/** | ||
sig:python: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- content/en/docs/languages/python/** | ||
- content/en/docs/zero-code/python/** | ||
sig:ruby: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- content/en/docs/languages/ruby/** | ||
sig:rust: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- content/en/docs/languages/rust/** | ||
sig:swift: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- content/en/docs/languages/swift/** | ||
sig:operator: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- content/en/docs/kubernetes/operator/** | ||
sig:helm: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- content/en/docs/kubernetes/helm/** | ||
sig:security: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- content/en/docs/security/** | ||
sig:demo: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- content/en/docs/demo/** | ||
sig:collector: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- content/en/docs/collector/** | ||
sig:enduser: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- content/en/community/end-user/** | ||
sig:spec: | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- content/en/docs/specs/** |
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,15 @@ | ||
name: i18n | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
i18n-check: | ||
name: I18N check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 # all | ||
- run: scripts/i18n-check.sh -u | ||
- run: .github/workflows/scripts/i18n-check-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,16 @@ | ||
name: 'Label PR' | ||
on: | ||
- pull_request_target | ||
|
||
jobs: | ||
labeler: | ||
name: 'Add component labels' | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/labeler@v5 | ||
with: | ||
configuration-path: '.github/component-label-map.yml' |
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 i18n pages are missing the 'default_lang_commit' front matter field. | ||
To fix this in your local development environment, run | ||
scripts/i18n-check.sh -u | ||
and commit the changes for your locale. 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
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.