From 5e93e271cba191ac5919906eb332795f30567e79 Mon Sep 17 00:00:00 2001 From: webtrustedinstalled Date: Mon, 17 Mar 2025 16:52:03 +0000 Subject: [PATCH] Create datadog-synthetics.yml --- .github/workflows/datadog-synthetics.yml | 25 ++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/datadog-synthetics.yml diff --git a/.github/workflows/datadog-synthetics.yml b/.github/workflows/datadog-synthetics.yml new file mode 100644 index 0000000..f6d8eff --- /dev/null +++ b/.github/workflows/datadog-synthetics.yml @@ -0,0 +1,25 @@ +name: Run Datadog Synthetic tests + +on: azure + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + # Run Synthetic tests within your GitHub workflow. + # For additional configuration options visit the action within the marketplace: https://github.com/marketplace/actions/datadog-synthetics-ci + - name: Run Datadog Synthetic tests + uses: DataDog/synthetics-ci-github-action@87b505388a22005bb8013481e3f73a367b9a53eb # v1.4.0 + with: + api_key: ${{secrets.DD_API_KEY}} + app_key: ${{secrets.DD_APP_KEY}} + test_search_query: 'tag:e2e-tests' #Modify this tag to suit your tagging strategy + +