Azure DevOps
Start DoesQA Runs from Azure Pipelines with the Universal Webhook.
Why use it
Before you start
Add a pipeline task
trigger:
- main
pool:
vmImage: ubuntu-latest
steps:
- bash: |
curl -sS -X POST \
"https://app.does.qa/api/hook/$(DOESQA_ACCOUNT_ID)?key=$(DOESQA_KEY)&withAll=smoke&label=azure-$(Build.BuildId)&mode=wait"
displayName: DoesQA Run
env:
DOESQA_KEY: $(DOESQA_KEY)
DOESQA_ACCOUNT_ID: $(DOESQA_ACCOUNT_ID)Select Flows and Values
Related
Last updated