Tomas Bjerre

Results 365 comments of Tomas Bjerre

I can confirm this. I think it is a problem in Jenkins, not in the plugin. The plugin has little code to handle those radio buttons: https://github.com/jenkinsci/generic-webhook-trigger-plugin/blob/master/src/main/resources/org/jenkinsci/plugins/gwt/GenericVariable/config.jelly#L7

Can you supply some examples of `json` where you want to trigger and not trigger? Like these: https://github.com/jenkinsci/generic-webhook-trigger-plugin/tree/master/src/test/resources/org/jenkinsci/plugins/gwt/bdd

So not a static custom response but something that is dynamic. Something that can be sent after the build is completed. No such feature is implemented. PR:s are welcome but...

Sounds like a JSONPath question that you can ask on Stackoverflow. I dont have a good answer.

Does the job produce a large build log? Im thinking it might be this code causing it: https://github.com/jenkinsci/generic-webhook-trigger-plugin/blob/0377c0486af7960b97f2e0ccb6150a832e4fc616/src/main/java/org/jenkinsci/plugins/gwt/GenericWebhookEnvironmentContributor.java#L52 Do you log contributed variables? Perhaps try switching that off.

There is a configuration called printContributedVariables that can ne set to false to avoid printing that. Also resolving everything is slow compared to just resolving the values you need. Use...

Here is where this was added: https://github.com/jenkinsci/generic-webhook-trigger-plugin/issues/7 But I agree that the $ variable perhaps should be treated as a special case and not contribute all leafs. It has been...

I'd like avoid adding options unless it is really necessary. I a user specifies a JSONPath it will be one of these cases: * An actual valid JSONPath that resolves...

Or you can add an option in Spotless to create a report on one of the formats supported by violations-lib.

Releases are done with Maven. The version is in the [pom](https://github.com/timols/java-gitlab-api/blob/master/pom.xml). I don't know why there is also a build.gradle... See #222 regarding release with v4 support. Also, always use...