From 8021a3ba6fc9a44bc2f13a8925317df440018f14 Mon Sep 17 00:00:00 2001 From: Sunil Shah Date: Wed, 1 Jun 2016 13:24:50 -0700 Subject: [PATCH 1/6] github -> GitHub --- README.md | 4 ++-- .../org/jenkinsci/plugins/ghprb/GhprbTrigger/config.groovy | 2 +- .../org/jenkinsci/plugins/ghprb/GhprbTrigger/config.jelly.tmp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1fc7c3ef6..dde78a884 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ build. A new build can also be started with a comment: ``retest this please``. -You can extend the standard build comment message on github +You can extend the standard build comment message on GitHub creating a comment file from shell console or any other jenkins plugin. Contents of that file will be added to the comment on GitHub. This is useful for posting some build dependent urls for users without @@ -93,7 +93,7 @@ For more details, see https://wiki.jenkins-ci.org/display/JENKINS/GitHub+pull+re * If you want to use the actual commit in the pull request, use ``${ghprbActualCommit}`` instead of ``${sha1}`` * Under ``Build Triggers``, check ``GitHub pull requests builder``. * Add admins for this specific job. - * If you want to use GitHub hooks for automatic testing, read the help for ``Use github hooks for build triggering`` in job configuration. Then you can check the checkbox. + * If you want to use GitHub hooks for automatic testing, read the help for ``Use GitHub hooks for build triggering`` in job configuration. Then you can check the checkbox. * In Advanced, you can modify: * The crontab line for this specific job. This schedules polling to GitHub for new changes in Pull Requests. * The whitelisted users for this specific job. diff --git a/src/main/resources/org/jenkinsci/plugins/ghprb/GhprbTrigger/config.groovy b/src/main/resources/org/jenkinsci/plugins/ghprb/GhprbTrigger/config.groovy index 983bd87ad..f5cdd6925 100644 --- a/src/main/resources/org/jenkinsci/plugins/ghprb/GhprbTrigger/config.groovy +++ b/src/main/resources/org/jenkinsci/plugins/ghprb/GhprbTrigger/config.groovy @@ -8,7 +8,7 @@ f.entry(field: "gitHubAuthId", title:_("GitHub API credentials")) { f.entry(field: "adminlist", title: _("Admin list")) { f.textarea(default: descriptor.adminlist) } -f.entry(field: "useGitHubHooks", title: "Use github hooks for build triggering") { +f.entry(field: "useGitHubHooks", title: "Use GitHub hooks for build triggering") { f.checkbox() } f.advanced() { diff --git a/src/main/resources/org/jenkinsci/plugins/ghprb/GhprbTrigger/config.jelly.tmp b/src/main/resources/org/jenkinsci/plugins/ghprb/GhprbTrigger/config.jelly.tmp index 37e864744..2a4efc9e4 100644 --- a/src/main/resources/org/jenkinsci/plugins/ghprb/GhprbTrigger/config.jelly.tmp +++ b/src/main/resources/org/jenkinsci/plugins/ghprb/GhprbTrigger/config.jelly.tmp @@ -2,7 +2,7 @@ - + From c305775ed6d8884bb4603e59613838e196ba86c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Br=C3=A1zdil?= Date: Tue, 22 Oct 2019 09:23:25 +0200 Subject: [PATCH 2/6] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index dde78a884..997acfcf1 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +**NOTE**: this plugin is currently maintained at https://github.com/jenkinsci/ghprb-plugin + # GitHub Pull Request Builder Plugin This Jenkins plugin builds pull requests from GitHub and will report the results directly to the pull request via From cded56735d02081868cc7ec82da856b6fc443e13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Br=C3=A1zdil?= Date: Tue, 22 Oct 2019 09:27:46 +0200 Subject: [PATCH 3/6] Update issue templates --- .github/ISSUE_TEMPLATE/custom.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/custom.md diff --git a/.github/ISSUE_TEMPLATE/custom.md b/.github/ISSUE_TEMPLATE/custom.md new file mode 100644 index 000000000..cd7c5d210 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/custom.md @@ -0,0 +1,10 @@ +--- +name: Custom issue template +about: No issues here +title: '' +labels: '' +assignees: '' + +--- + +### To report issues, go to the project location at https://github.com/jenkinsci/ghprb-plugin/issues From 0087e776ba2cc5034242fcb7662fc9817896f60b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Br=C3=A1zdil?= Date: Tue, 22 Oct 2019 09:29:09 +0200 Subject: [PATCH 4/6] Update issue templates --- ...https---github-com-jenkinsci-ghprb-plugin-issues.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/don-t-create-issues-here--go-to-https---github-com-jenkinsci-ghprb-plugin-issues.md diff --git a/.github/ISSUE_TEMPLATE/don-t-create-issues-here--go-to-https---github-com-jenkinsci-ghprb-plugin-issues.md b/.github/ISSUE_TEMPLATE/don-t-create-issues-here--go-to-https---github-com-jenkinsci-ghprb-plugin-issues.md new file mode 100644 index 000000000..a77f82f46 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/don-t-create-issues-here--go-to-https---github-com-jenkinsci-ghprb-plugin-issues.md @@ -0,0 +1,10 @@ +--- +name: Don't create issues here, go to https://github.com/jenkinsci/ghprb-plugin/issues +about: No issues here, go to https://github.com/jenkinsci/ghprb-plugin/issues +title: '' +labels: '' +assignees: '' + +--- + +### To report issues, go to the project location at https://github.com/jenkinsci/ghprb-plugin/issues From d706c582cc8edef0fea4f663ed3711f597e0ddcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Br=C3=A1zdil?= Date: Tue, 22 Oct 2019 09:29:37 +0200 Subject: [PATCH 5/6] Delete custom.md --- .github/ISSUE_TEMPLATE/custom.md | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/custom.md diff --git a/.github/ISSUE_TEMPLATE/custom.md b/.github/ISSUE_TEMPLATE/custom.md deleted file mode 100644 index cd7c5d210..000000000 --- a/.github/ISSUE_TEMPLATE/custom.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -name: Custom issue template -about: No issues here -title: '' -labels: '' -assignees: '' - ---- - -### To report issues, go to the project location at https://github.com/jenkinsci/ghprb-plugin/issues From aa27e06d540df9b5e9610a7286ab7a0a3accdcab Mon Sep 17 00:00:00 2001 From: Jonathan Leitschuh Date: Tue, 11 Feb 2020 00:37:17 -0500 Subject: [PATCH 6/6] Use HTTPS instead of HTTP to resolve dependencies This fixes a security vulnerability in this project where the `pom.xml` files were configuring Maven to resolve dependencies over HTTP instead of HTTPS. Signed-off-by: Jonathan Leitschuh --- pom.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index 368d40e0e..f3c11c3d7 100644 --- a/pom.xml +++ b/pom.xml @@ -177,26 +177,26 @@ repo.jenkins-ci.org - http://repo.jenkins-ci.org/public/ + https://repo.jenkins-ci.org/public/ jgit-repository Eclipse JGit Repository - http://download.eclipse.org/jgit/maven + https://download.eclipse.org/jgit/maven repo.jenkins-ci.org - http://repo.jenkins-ci.org/public/ + https://repo.jenkins-ci.org/public/ maven.jenkins-ci.org - http://maven.jenkins-ci.org:8081/content/repositories/releases/ + https://maven.jenkins-ci.org:8081/content/repositories/releases/