[Question] Is it possible to add custom phabricator comment from a jenkins pipeline step?
See original GitHub issueHey guys, Is it possible to provide such a file like described in the Advanced usage docs from a jenkins pipeline?
I’ve already figured out how to use the PhabricatorNotifier
itself, but couldn’t find anything about the custom comments:
...
post {
always {
script {
currentBuild.result = currentBuild.currentResult
}
step([$class: 'PhabricatorNotifier', commentOnSuccess: true, commentWithConsoleLinkOnFailure: true])
}
}
Issue Analytics
- State:
- Created 3 years ago
- Comments:10 (3 by maintainers)
Top Results From Across the Web
Pipeline Steps Reference - Jenkins
The following plugins offer Pipeline-compatible steps. ... Custom Build Properties Plugin ... addGitLabMRComment : Add comment on GitLab Merge Request ...
Read more >Jenkins and Phabricator integration - Stack Overflow
First go to manage jenkins --> plugins and install the phabricator plugin. After that you can follow the documentation on the github page....
Read more >Publishers — Jenkins Job Builder 3.12.1.dev9 documentation
This plugin makes it possible to copy artifacts to remote locations. ... build-pack – If your application requires a custom buildpack, you can...
Read more >Continuous Automated Testing using Phabricator and Jenkins
Phabricator and Jenkins pipeline can be used to generate builds using a code patch (before the code is committed to mainline) and then...
Read more >How To Use Shared Libraries In A Jenkins Pipeline?
In brief, here are steps to create & use the Jenkins shared library: Create a separate git repo for the Jenkins pipeline library...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I ended up using the Phabricator API itself to add custom comments: