3

In Jenkins, we have some multibranch pipeline projects with three branches Develop, Master and SIT. we have around 10 developers. For 5 developers, i should provide access to just develop branch to run. Also, i should restrict them to run master and SIT branch. can we do this? I tried using matrix based type but its not working out to provide access per branch level. Thanks for your help and comments...!

  • AFAIK, user level restriction per is not possible in multibranch pipeline, reason is all the configuration and settings needs to be done from Jenkinsfile with scripts. Ultimately these will have access to the developers and can change accordingly... – Here_2_learn Mar 15 '18 at 05:56

1 Answers1

0

Try using project based Matrix Authorization strategy under Configure Global Security.

Anudeep
  • 21
  • 1
  • 5
  • Thanks @Anudeep... yes this is what we have in Jenkins. But I can't able to provide access per branch level. –  Mar 13 '18 at 17:37