You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 9, 2021. It is now read-only.
When a & is used in branch name and you have a trigger which sends a request to somewhere with ${PULL_REQUEST_FROM_ID} or ${PULL_REQUEST_FROM_BRANCH} the symbol & is not escaped. When this symbol is not escaped the http request has 1 more wrong GET param.
Example: branchName=some-fixes&more-fixes
built url: http://jenkins.asd.com/buildWithParam?branchname=some-fixes&more-fixes
In this case jenkins recognises 2 params instead of 1
should be: http://jenkins.asd.com/buildWithParam?branchname=some-fixes%26more-fixes
The text was updated successfully, but these errors were encountered: