Add Datadog Synthetic tests workflow#994
Add Datadog Synthetic tests workflow#994Kelleretoro wants to merge 5 commits intoconventional-changelog:masterfrom
Conversation
This workflow triggers Datadog Synthetic tests on push and pull request events to the master branch.
There was a problem hiding this comment.
Pull request overview
This PR adds a new GitHub Actions workflow to trigger Datadog Synthetic tests on push and pull request events to the master branch. The workflow integrates with Datadog's testing platform to run end-to-end tests as part of the CI/CD pipeline.
Key Changes:
- Adds a new workflow file that runs Datadog Synthetic tests using the official Datadog GitHub Action
- Uses repository secrets for Datadog API and Application keys to authenticate with the Datadog platform
- Configures the workflow to trigger on push and pull request events targeting the master branch
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| uses: DataDog/synthetics-ci-github-action@87b505388a22005bb8013481e3f73a367b9a53eb # v1.4.0 | ||
| with: | ||
| api_key: ${{secrets.DD_API_KEY}} | ||
| app_key: ${{secrets.DD_APP_KEY}} |
There was a problem hiding this comment.
Add spaces around the expression delimiters for consistency with the repository's GitHub Actions style. Should be ${{ secrets.DD_APP_KEY }} instead of ${{secrets.DD_APP_KEY}}.
| app_key: ${{secrets.DD_APP_KEY}} | |
| app_key: ${{ secrets.DD_APP_KEY }} |
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
|
@copilot open a new pull request to apply changes based on the comments in this thread |
|
@copilot open a new pull request to apply changes based on the comments in this thread |
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 1 out of 1 changed files in this pull request and generated 2 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
|
@copilot open a new pull request to apply changes based on the comments in this thread |
|
@copilot open a new pull request to apply changes based on the comments in this thread |
This workflow triggers Datadog Synthetic tests on push and pull request events to the master branch.