From a6a5cd364fb7fee924e1851813593dec2649d015 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 20 Jan 2026 16:43:44 +0000 Subject: [PATCH 1/2] Initial plan From 29eee5350f0a4b84fa46f48b36912b489ca2103b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 20 Jan 2026 16:46:35 +0000 Subject: [PATCH 2/2] Add GitHub Actions workflow for Datadog Synthetic tests Co-authored-by: jarlungoodoo73 <201750283+jarlungoodoo73@users.noreply.github.com> --- .github/workflows/datadog-synthetic.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/datadog-synthetic.yml diff --git a/.github/workflows/datadog-synthetic.yml b/.github/workflows/datadog-synthetic.yml new file mode 100644 index 00000000000..fc390e05213 --- /dev/null +++ b/.github/workflows/datadog-synthetic.yml @@ -0,0 +1,24 @@ +name: Datadog Synthetic Tests + +on: + push: + branches: + - trunk + pull_request: + +permissions: + contents: read + +jobs: + datadog-synthetic-tests: + runs-on: ubuntu-latest + + steps: + - name: Check out code + uses: actions/checkout@v5 + + - name: Run Datadog Synthetic tests + uses: DataDog/synthetics-ci-github-action@v1 + with: + api_key: ${{ secrets.DATADOG_API_KEY }} + app_key: ${{ secrets.DATADOG_APP_KEY }}