目标:一个 jenkins 管道,它分叉一个 repo、进行更改、推送更改并从 master 生成 PR。
我的问题是,由于这可能并行运行,我需要每个分叉都有一个唯一的名称。gh
命令行工具似乎表明使用该标志可以做到这一点,--remote-name
但它并没有达到我的预期,我不知道是否还有其他方法
我的命令
gh repo fork https://host/team/aws.git --remote=true --clone
正确地创建了一个user/aws
repo,但是
gh repo fork https://host/team/aws.git --remote-name=ME-test --clone
返回 user/aws already exists
有没有另一种方法来实现重命名的分叉?