8855eb2523
As per now if you want to configure the stash publisher and give it a username and password, you need to set them in clear text within the yaml file. This pull request gives the possibility to set these credentials within the jenkins_jobs.ini file and therefore makes it possible to not expose them to everyone. Change-Id: I2e5d6caefb87ded2468c7b7e015e20464ffef99e
22 lines
420 B
Plaintext
22 lines
420 B
Plaintext
[job_builder]
|
|
ignore_cache=True
|
|
keep_descriptions=False
|
|
include_path=.:scripts:~/git/
|
|
recursive=False
|
|
exclude=.*:manual:./development
|
|
allow_duplicates=False
|
|
|
|
[jenkins]
|
|
user=jenkins
|
|
password=1234567890abcdef1234567890abcdef
|
|
url=https://jenkins.example.com
|
|
query_plugins_info=False
|
|
##### This is deprecated, use job_builder section instead
|
|
#ignore_cache=True
|
|
|
|
[hipchat]
|
|
authtoken=dummy
|
|
|
|
[stash]
|
|
username=user
|
|
password=pass |