-
Notifications
You must be signed in to change notification settings - Fork 819
Add Datadog Synthetic tests workflow #994
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
This workflow triggers Datadog Synthetic tests on push and pull request events to the master branch.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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}} |
Copilot
AI
Nov 23, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.