-
Notifications
You must be signed in to change notification settings - Fork 261
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 datadog-gpg
- Loading branch information
Showing
348 changed files
with
6,281 additions
and
859 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
* @DataDog/agent-platform | ||
* @DataDog/agent-build-and-releases | ||
|
||
# Docs | ||
*README.md @DataDog/agent-platform @DataDog/documentation | ||
*README.md @DataDog/agent-build-and-releases @DataDog/documentation |
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,25 @@ | ||
--- | ||
name: Bug Report | ||
about: Identify a bug in the scripts | ||
title: "[BUG] " | ||
labels: triage | ||
assignees: '' | ||
|
||
--- | ||
|
||
<!-- | ||
If you have identified a specific bug in the scripts, please describe it here. If the | ||
issue requires further debugging or investigation, that will be best accomplished via support. Please contact Datadog [support](http://docs.datadoghq.com/help/). | ||
--> | ||
|
||
|
||
**Environment details (Operating System, Cloud provider, etc):** | ||
|
||
|
||
**Describe what happened:** | ||
|
||
|
||
**Describe what you expected:** | ||
|
||
|
||
**Steps to reproduce the issue:** |
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,12 @@ | ||
--- | ||
name: Feature Request | ||
about: Suggest a new feature | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
This issue tracker is primarily used to track bugs in the scripts. For feature requests, please contact [Datadog support](http://docs.datadoghq.com/help/) and share your ideas with them. | ||
|
||
Thanks! |
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,53 @@ | ||
<!-- | ||
* New contributors are highly encouraged to read our | ||
[CONTRIBUTING](/CONTRIBUTING.md) documentation. | ||
* The pull request: | ||
* Should only fix one issue or add one feature at a time. | ||
* Must update the test suite for the relevant functionality. | ||
* Should pass all status checks before being reviewed or merged. | ||
* Commit titles should be prefixed with general area of pull request's change. | ||
* Draft PRs should be prefixed with `[WIP]` in their title. | ||
--> | ||
### What does this PR do? | ||
|
||
<!-- | ||
* A brief description of the change being made with this pull request. | ||
* If the description here cannot be expressed in a succinct form, consider | ||
opening multiple pull requests instead of a single one. | ||
--> | ||
|
||
### Motivation | ||
|
||
<!-- | ||
* What inspired you to submit this pull request? | ||
* Link any related GitHub issues or PRs here. | ||
--> | ||
|
||
### Additional Notes | ||
|
||
<!-- | ||
* Anything else we should know when reviewing? | ||
* Include benchmarking information here whenever possible. | ||
* Include info about alternatives that were considered and why the proposed | ||
version was chosen. | ||
--> | ||
|
||
### Possible Drawbacks / Trade-offs | ||
|
||
<!-- | ||
* What are the possible side-effects or negative impacts of the code change? | ||
--> | ||
|
||
### Describe how to test/QA your changes | ||
|
||
<!-- | ||
* Write here in detail or link to detailed instructions on how this change can | ||
be tested/QAd/validated, including any environment setup. | ||
--> | ||
|
||
### Reviewer's Checklist | ||
<!-- | ||
* Authors can use this list as a reference to ensure that there are no problems | ||
during the review but the signing off is to be done by the reviewer(s). | ||
Note: Adding GitHub labels is only possible for contributors with write access. | ||
--> |
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,46 @@ | ||
name: "CodeQL" | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
branches: [ main ] | ||
|
||
jobs: | ||
analyze: | ||
name: Analyze | ||
runs-on: ubuntu-latest | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
language: [ 'ruby' ] | ||
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] | ||
# Learn more about CodeQL language support at https://git.io/codeql-language-support | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
# Initializes the CodeQL tools for scanning. | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v2 | ||
with: | ||
languages: ${{ matrix.language }} | ||
# If you wish to specify custom queries, you can do so here or in a config file. | ||
# By default, queries listed here will override any specified in a config file. | ||
# Prefix the list here with "+" to use these queries and those in the config file. | ||
# queries: ./path/to/local/query, your-org/your-repo/queries@main | ||
|
||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java). | ||
# If this step fails, then you should remove it and run the build manually | ||
- name: Autobuild | ||
uses: github/codeql-action/autobuild@v2 | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v2 |
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.