1

我正在尝试为 bitbucket 云设置 config.json 以自动更新 bitbucket 云的 npm 存储库中的依赖项。我找到了一个例子,但无法弄清楚两件事:

  1. 端点 - 应该去那里(ABC)?- 我们公司的 bitbucket 命名空间链接如下:https ://bitbucket.org/uvxyz/

  2. 我可以使用 renovate-bot 在没有 bitbucket 管道的情况下发布 PR 吗?如果是这样,我是否可以通过 config.json mods 进行 renovate 以仅更新特定的 repo 或 repos,或者我将 renovate.json 文件放在需要自动依赖更新的每个 repo 中?

感谢有关后者的任何示例。

config.json: 
module.exports = {
  "platform": "bitbucket",
  "username": "<my.username>",
  "password": "<bitbucket token on my account>",
  "endpoint": "ABC",
  "hostRules": [
    {
      "hostType": "bitbucket",
      "domainName": "ABC",
      "timeout": 10000,
      "username": "<my.username>",
      "password": "<bitbucket token on my account>"
    }
  ]
};
4

0 回答 0