This commit is contained in:
Jared Murrell 2020-03-06 10:35:55 -05:00 коммит произвёл GitHub
Родитель 1879d2a73d
Коммит b74c6e09c3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 17 добавлений и 0 удалений

Просмотреть файл

@ -17,3 +17,20 @@ module.exports = app => {
// To get your app running against GitHub, see:
// https://probot.github.io/docs/development/
}
var rally = require('rally'),
var restApi = rally({
//user: 'userName', //required if no api key, defaults to process.env.RALLY_USERNAME
//pass: 'password', //required if no api key, defaults to process.env.RALLY_PASSWORD
//apiKey: '_12fj83fjk...', //preferred, required if no user/pass, defaults to process.env.RALLY_API_KEY
apiVersion: 'v2.0', //this is the default and may be omitted
server: 'https://rally1.rallydev.com', //this is the default and may be omitted
requestOptions: {
headers: {
'X-RallyIntegrationName': 'Probot-Rally', //while optional, it is good practice to
'X-RallyIntegrationVendor': 'GitHub, Inc', //provide this header information
'X-RallyIntegrationVersion': '1.0'
}
//any additional request options (proxy options, timeouts, etc.)
}
});