-
Notifications
You must be signed in to change notification settings - Fork 375
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feature/sinatra-rack
- Loading branch information
Showing
514 changed files
with
11,505 additions
and
4,855 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
2 changes: 1 addition & 1 deletion
2
.../images/primary/Dockerfile-3.2.0-preview1 → .../images/primary/Dockerfile-3.2.0-preview2
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,45 @@ | ||
# Configuration for GitHub Action `.github/workflows/pull-request-labeler.yml`. | ||
# See https://github.com/marketplace/actions/labeler for more information. | ||
|
||
core: | ||
- any: [ 'lib/datadog/core/**' ] | ||
|
||
# Only documentation changes | ||
docs: | ||
- all: [ '**/*.md' ] | ||
|
||
# Only test changes | ||
dev/testing: | ||
- all: [ '{spec/**,integration/**,benchmarks/**,sorbet/**}' ] | ||
|
||
# Changes to Profiling | ||
profiling: | ||
- any: [ '{lib/datadog/profiling/**,ext/ddtrace_profiling_loader/**,ext/ddtrace_profiling_native_extension/**}' ] | ||
|
||
# Changes to CI-App | ||
ci-app: | ||
- any: [ 'lib/datadog/ci/**' ] | ||
|
||
# Changes to ASM | ||
appsec: | ||
- any: [ 'lib/datadog/appsec/**' ] | ||
|
||
# Changes to Tracing | ||
tracing: | ||
- any: [ 'lib/datadog/tracing/**' ] | ||
|
||
# Changes to Tracing integrations | ||
integrations: | ||
- any: [ '{lib/datadog/tracing/contrib/**,lib/datadog/appsec/contrib/**}' ] | ||
|
||
# Only repository GitHub changes | ||
dev/github: | ||
- all: [ '.github/**' ] | ||
|
||
# Only repository CI changes | ||
dev/ci: | ||
- all: [ '{.circleci/**,.gitlab-ci.yml}' ] | ||
|
||
# Version bump pull request | ||
release: | ||
- all: [ '{CHANGELOG.md,lib/ddtrace/version.rb}' ] |
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: "Pull Request Labeler" | ||
on: | ||
- pull_request_target | ||
|
||
jobs: | ||
triage: | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: kachkaev/labeler@d89797c51d07680aec17049cc6790e9d323d9a93 # actions/labeler@v4 + https://github.com/actions/labeler/pull/316 | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
configuration-path: .github/labeler.yml | ||
dot: true # From https://github.com/actions/labeler/pull/316 |
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.