upstream-branch

Pass Artifact or String to upstream job in Jenkins Pipeline

☆樱花仙子☆ 提交于 2020-12-13 20:57:07
问题 Goal I'm trying to orchestrate a dependency chain using the GitHub organization plugin along with the jenkins pipeline. As the products I'm building have a number of shared dependencies, I'm using nuget packages to manage dependency versioning and updates. However, I'm having trouble getting necessary artifacts/info to the projects doing the orchestration. Strategy On a SCM change any upstream shared libraries should build a nuget package and orchestrate any downstream builds that need new

Fetch and Merge into all Branches at once from Upstream Repository

泄露秘密 提交于 2019-12-11 10:08:35
问题 I have a github fork, which I have cloned onto my computer. On the original project, I have opened many PRs, and each of them correspond to their own branch (I don't use master ). From time to time, I occasionally run the following command: git fetch upstream && git merge upstream/master --no-edit ( upstream is the original repository). The command above works for updating the current branch that I am on. Is there a way to do the same for all my branches at once ? Currently, to achieve the

Git and GitHub concepts: Reviewing updated pull requests locally

谁说胖子不能爱 提交于 2019-12-04 06:33:02
问题 I follow the generic OSS structure: the OSS' remote repository hosted on GitHub a fork of the OSS remote repository to my own remote repository a clone of the fork on my remote repository to create a local repository Thus, a contributor would create a new branch locally, push the changes to his/her remote repository, and then open a pull request to the OSS' remote repository. This has been working well. However, the main issue comes when I try to review another contributor's pull request by