Is there a way to delete/remove the project avatar that has been uploaded. I want to REMOVE entirely, NOT trying to change to another avatar. The reason I want to remove is because I want my Jenkins Bitbucket plugin to generate random icons for each respective project.
Bitbucket server version 5.14.4
There is a Jira issue regarding this but I couldn't see any Delete Avatar link/button.
https://jira.atlassian.com/browse/BCLOUD-12276
Related
We have a setup with Bitbucket GIT linked to JIRA issue tracker. It is possible to add special comments to GIT commit messages to update JIRA issues automatically.
However, is it possible to put the link to the Pull Request, when it is created, to the corresponding JIRA issue? JIRA issue knows the name of the branch, so it should also have information on the pull requests.
If you reference your issue keys in your commit messages, branches and pull requests then this information will automatically appear in your issue's development panel.
This requires that you have an application link configured between JIRA and Bitbucket.
This is how it should look:
More info is available on the Development Information documentation page.
I am trying to link or associate an external application url to jenkins job build.
So for every builds, this link or url should be available at the left side and any user can simply click on it to launch the external application.
So far I explored the following plugins for this:
https://wiki.jenkins.io/display/JENKINS/Associated+Files+Plugin - this associates a file or directory to the build , something similar to the html publisher plugin... not a url
https://wiki.jenkins.io/display/JENKINS/DocLinks+Plugin - similar to above , associate a doc from the build artifact directories
https://wiki.jenkins.io/pages/viewpage.action?pageId=52298023 - this Side bar link plugin can associate a external link to the jenkin project, but not to every builds
for me the external link which I am trying to associate to the build , dynamically changes for each build , basically some of the query parameter in the external link, so it's critical to associate it to every builds for tracking and other purposes . ex: the external link will be a like a small web app
http:hostnamexxx:port/somepage?para1=xxx¶2=yyyy
Please let me know if there is any plugin for this specific purpose or any other ideas
This would be the Anchor Chain plugin. I've played around with it a bit:
The docs state that the icon can be omitted. Then however you need to insert a tab character after the URL.
When inserting a link to an icon, it is always relative to Jenkins base URL.
I have set up a Jenkins server which builds multiple projects using "Github Organisation" Items. I now want to restrict some credentials so they can only be used in specific organisations.
I figured this should be possible, since such a Multibranch project just creates folders and the folder plugin integrates with the credentials plugin.
However, I have not found any documentation on how to restrict credentials to folders (only that it is possible).
In the meantime, I found out myself.
While being in a folder (or github organisation/multibranch project), click on "Credentials" (left sidebar).
After that, the same credentials entry gets a child entry, called "Folder". Click on it, and you can edit the credentials(-domains) scoped to the folder like usual.
Current Limitation: The folder plugin does only support "Username with password" credentials.
I followed Empower Jenkins with Artifactory video on YouTube. Basically, I added a new user to artifactory and granted it deploy permissions. Then I configured system configuration on Jenkins and tested that the configurations were right.
I created a new job and tried to set the deployment task to deploy it to artifactory. The problem is there is no repository on the dropdown.
I want to know how to fix this.
Try saving the job and reloading it.
The logic behind this behavior is to avoid a long list of repositories. Some users have hundreds of local repositories which takes a long time to display. By entering credentials, you can display a filtered list containing only relevant repositories.
There is an open issue to add a refresh button so there will be no need to save the job prior to displaying the list.
Update
This issue was resolved with the release of version 2.2.3 of the plugin. For more info see HAP-483
I am using Image Gallery Plugin, here it displays the gallery in build page. But i want to add latest result(Gallery) to project home page, How can i do this?
I tried "getProjectAction" but this executes only when we do the configuration. I looked into "perform" method which is already exist in this plugin source, It has build.action to post the result. How the build.action works? Is it particularly adding action to only build or Can we even add it to project home?
Please help...