(How) can I define a successCriteria for say: https://api.github.com/repos/octocat/boysenberry-repo-1/branches to check if there is a master branch in the response?
ie the equivalent of the following:
curl -s https://api.github.com/repos/octocat/boysenberry-repo-1/branches \
| jq -e 'any(.[]; .name == "master")'
(How) can I define a
successCriteriafor say: https://api.github.com/repos/octocat/boysenberry-repo-1/branches to check if there is amasterbranch in the response?ie the equivalent of the following: