bluesliverx/gradle-android-publisher 91
Gradle plugin to publish APKs to Google Play
bluesliverx/disable-github-multibranch-status-plugin 10
Jenkins plugin
bluesliverx/grails-artefact-messaging 4
http://grails.org/plugin/artefact-messaging
bluesliverx/adobe-analytics-hackathon-2017 1
Helper script for generating fake traffic data
Castle MonoRail Framework - http://www.castleproject.org/monorail/index.html
A Groovy wrapper to the mongodb Java driver
The Grails Web Application Framework
bluesliverx/grails-data-mapping 1
Grails Data Mapping Project
AMQP 0.9 client designed for asyncio and humans.
startedbluesliverx/grails-external-config-reload
started time in a month
issue openedbluesliverx/grails-external-config-reload
Bintray is shutdown, please publish to new repo
See this article: https://grails.org/blog/2021-02-12-alerts-regarding-bintray-sunset.html
We strongly suggest that folks publish to Maven Central.
created time in a month
startedant-design/ant-design
started time in a month
Coordinates control of multiple docker-compose projects
fork in 2 months
issue openedjenkinsci/github-pr-comment-build-plugin
The plugin is not triggered with a multibranch pipeline
<!-- SECURITY ISSUES: Never report security issues on GitHub or other public channels (Gitter/Twitter/etc.) Follow these instruction to report security issues: https://www.jenkins.io/security/#reporting-vulnerabilities -->
Version report
Jenkins and plugins versions report:
<!-- paste below the version report from https://www.jenkins.io/doc/book/system-administration/diagnosing-errors/#how-to-report-a-bug -->
latest
- What Operating System are you using (both controller, and any agents involved in the problem)?
N/A
Reproduction steps
<!--
-
Write bullet-point reproduction steps.
-
Be explicit about any relevant configuration, jobs, build history, user accounts, etc., redacting confidential information as needed.
-
The best reproduction steps start with a clean Jenkins install, perhaps a
docker runcommand if possible. -
Use screenshots where appropriate, copy textual output otherwise. When in doubt, do both.
-
Include relevant logs, debug if needed - https://www.jenkins.io/doc/book/system-administration/viewing-logs/ -->
-
Installed plugin and related stuff
-
Created a multibranch pipeline with webhook.
-
Used a CURL with a valid payload of a github event trigerred by a comment
Results
Expected result:
Creates a new build in the specific job for the specific pull request Actual result:
Only trigger the scan with no logs from the plugin.
What this piece of code means? Perhaps is discarded for this reason, but I don't know what SCMSourceOwner implies. @Override protected boolean isApplicable(Item item) { if (item != null && item instanceof Job<?, ?>) { Job<?, ?> project = (Job<?, ?>) item; if (project.getParent() instanceof SCMSourceOwner) { SCMSourceOwner owner = (SCMSourceOwner) project.getParent(); for (SCMSource source : owner.getSCMSources()) { if (source instanceof GitHubSCMSource) { return true; } } } } return false; }
created time in 3 months