-
Notifications
You must be signed in to change notification settings - Fork 821
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 resources-async
- Loading branch information
Showing
598 changed files
with
49,302 additions
and
44,795 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
name: Create or Update Release PR | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
release_type: | ||
type: choice | ||
description: Release type | ||
options: | ||
- patch | ||
- minor | ||
release_scope: | ||
type: choice | ||
description: Release Scope | ||
options: | ||
- experimental # all packages in experimental/packages | ||
- sdk # all SDK packages, experimental and stable, excluding semantic conventions | ||
- all # all release packages, including API, excluding semconv | ||
- semconv # only semantic convention package | ||
|
||
jobs: | ||
create-or-update-release-pr: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Fork | ||
run: gh repo fork open-telemetry/opentelemetry-js | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.OPENTELEMETRYBOT_GITHUB_TOKEN }} | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
repository: opentelemetrybot/opentelemetry-js | ||
ref: main | ||
token: ${{ secrets.OPENTELEMETRYBOT_GITHUB_TOKEN }} | ||
- name: Sync with upstream | ||
run: | | ||
git remote show origin | ||
git remote add upstream https://github.com/open-telemetry/opentelemetry-js.git | ||
git fetch upstream | ||
git reset --hard upstream/main | ||
git push origin main --force | ||
- uses: actions/setup-node@v4 | ||
with: | ||
cache: 'npm' | ||
cache-dependency-path: package-lock.json | ||
node-version: 22 | ||
- run: npm install -g npm@latest | ||
|
||
- run: npm ci | ||
|
||
- name: Create/Update Release PR | ||
run: | | ||
git config user.name opentelemetrybot | ||
git config user.email [email protected] | ||
npm run github:create_or_update_release_pr | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.OPENTELEMETRYBOT_GITHUB_TOKEN }} | ||
RELEASE_SCOPE: ${{ github.event.inputs.release_scope }} | ||
RELEASE_KIND: ${{ github.event.inputs.release_scope }}:${{ github.event.inputs.release_type }} | ||
RELEASE_PR_REMOTE: origin | ||
RELEASE_PR_OWNER: opentelemetrybot |
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 |
---|---|---|
@@ -1,6 +1,3 @@ | ||
[submodule "experimental/packages/otlp-proto-exporter-base/protos"] | ||
path = experimental/packages/otlp-proto-exporter-base/protos | ||
url = https://github.com/open-telemetry/opentelemetry-proto.git | ||
[submodule "experimental/packages/otlp-transformer/protos"] | ||
path = experimental/packages/otlp-transformer/protos | ||
url = https://github.com/open-telemetry/opentelemetry-proto.git |
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 @@ | ||
// https://github.com/DavidAnson/markdownlint-cli2#markdownlint-cli2jsonc | ||
{ | ||
"config": { | ||
// https://github.com/DavidAnson/markdownlint/blob/main/README.md#rules--aliases | ||
"MD013": false, | ||
"MD024": false, | ||
"MD033": false, | ||
"MD041": false, | ||
"MD026": false, | ||
"MD004": { "style": "dash" } // ul-style | ||
}, | ||
"gitignore": true, | ||
"noBanner": true, | ||
"noProgress": true | ||
} |
This file was deleted.
Oops, something went wrong.
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 @@ | ||
require: 'ts-node/register' |
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
"extension": [ | ||
".ts" | ||
], | ||
"reporter": ["text", "json"], | ||
"exclude": [ | ||
"**/*.d.ts", | ||
"build/**/*.*", | ||
|
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.