Re: Request for copy-editor permissions for github.com/jenkins-infra/jenkins.io

2019-06-06 Thread Liam Newman
Absolutely +1. Surprised you don't already have it. On Thu, Jun 6, 2019 at 5:23 PM Rick wrote: > +1 from me > > On Fri, Jun 7, 2019 at 7:25 AM Alyssa Tong wrote: > >> +1 from me as well. Tracy's help will help to move the PRs along as we've >> experienced a little bit of a traffic jam :o) >> >

Re: Request for copy-editor permissions for github.com/jenkins-infra/jenkins.io

2019-06-06 Thread Rick
+1 from me On Fri, Jun 7, 2019 at 7:25 AM Alyssa Tong wrote: > +1 from me as well. Tracy's help will help to move the PRs along as we've > experienced a little bit of a traffic jam :o) > > On Thu, Jun 6, 2019 at 1:34 PM Mark Waite > wrote: > >> +1 from me. >> >> On Thu, Jun 6, 2019 at 2:32 PM T

Re: Request for copy-editor permissions for github.com/jenkins-infra/jenkins.io

2019-06-06 Thread Alyssa Tong
+1 from me as well. Tracy's help will help to move the PRs along as we've experienced a little bit of a traffic jam :o) On Thu, Jun 6, 2019 at 1:34 PM Mark Waite wrote: > +1 from me. > > On Thu, Jun 6, 2019 at 2:32 PM Tracy Miranda > wrote: > >> Hi all, >> >> From https://issues.jenkins-ci.org/

Re: Request for copy-editor permissions for github.com/jenkins-infra/jenkins.io

2019-06-06 Thread Mark Waite
+1 from me. On Thu, Jun 6, 2019 at 2:32 PM Tracy Miranda wrote: > Hi all, > > From https://issues.jenkins-ci.org/browse/INFRA-2138 > > I would like to request to be part of the copy-editors group and have > merge permissions for github.com/jenkins-infra/jenkins.io so as to help > improve the vel

Request for copy-editor permissions for github.com/jenkins-infra/jenkins.io

2019-06-06 Thread Tracy Miranda
Hi all, >From https://issues.jenkins-ci.org/browse/INFRA-2138 I would like to request to be part of the copy-editors group and have merge permissions for github.com/jenkins-infra/jenkins.io so as to help improve the velocity for prs on that repo as well as extra bandwidth for the existing team.

Re: Accessing parameter values form a different plugin

2019-06-06 Thread Jesse Glick
On Thu, Jun 6, 2019 at 10:53 AM 'Jordan Vogel' via Jenkins Developers wrote: > I would like to access [a build parameter] value within in the Perforce plugin Typically `build.getEnvironment(listener)` from an `SCM.checkout` override. -- You received this message because you are subscribed to th

Re: Accessing parameter values form a different plugin

2019-06-06 Thread Jeff Pearce
If I understand correctly, this code https://github.com/jenkinsci/github-autostatus-plugin/blob/daf4bf1a0553f91bb0b4deaee32905f077f050ec/src/main/java/org/jenkinsci/plugins/githubautostatus/BuildStatusJobListener.java#L83-L94 Is what you want – it puts all the parameters passed to a job into a map

Re: Accessing parameter values form a different plugin

2019-06-06 Thread 'Jordan Vogel' via Jenkins Developers
I'll try and give you some more specifics. Basically I am trying to access a parameter the jobs are passed when they are triggered by scripts. So the url for the POST request is my-dns.net/MyJobName/buildWithParameter ?parameterName=Value. I want to be able to access that value from a plugin. Fo

Re: Accessing parameter values form a different plugin

2019-06-06 Thread Jesse Glick
On Wed, Jun 5, 2019 at 1:12 PM Jeff Pearce wrote: > Assuming you have the current build project, It might be included in > build.getParent().getProperties() > https://javadoc.jenkins.io/hudson/model/Job.html#getProperties-- No, `Job.properties` is unrelated. From: 'Jordan Vogel' via Jenkins De