If you’d like to (or already are) testing performance in GitHub Pull Requests, there is a new way to configure your test settings. With version 2, you can create configuration options for different branches using positive and negative patterns.
This is useful if you’d like to test differently based on branch names, for example, your preview-public branches are publicly accessible, but preview-* are password-protected:
1version: 22pullRequestReviews:3 - branches:4 - preview-*5 authentication:6 password: mysecretpassword7 formSelector: form8 passwordSelector: input[type=password]9 required: true10 - branches:11 - preview-public12 authentication:13 required: false14
Or, you could report different metrics based on branch name too! Convert your configuration.yaml to the new, multi-block format to create branch-specific testing conditions.