I'd like update/create a Confluence page from an auto-created message in Slack. Is that even possible?
Related
I'm working on a internal integration with Jira and I need to perform an action when a ticket is moved between boards. I've setup a Automation trigger that sends a web requeest but I'm not sure how to get the name of the user that performs the action.
Although Atlassian's docs are all over the place, I found out that there is an action object that is passed but nothing more.
I am trying to create ticket in freshdesk whenever I update a jira ticket. I setup a webhook for jira and calling freshdesk API to add ticket there.
my problem is when I update ticket it jira it'd triggering my webhook and create a ticket in freshdesk but freshdesk again posting it back to jira and it's working like an infinitloop.
any idea how i can fix this?
It sounds like you have two triggers:
1. Jira update -> new ticket in Freshdesk; and
2. Freshdesk ticket -> new issue in Jira.
Yes, that will try to create an infinite number of issues and tickets. So you have to ask yourself, "What am I trying to do?" The main thing I would ask you is which resource (Freshdesk or Jira) is the authoritative data source, and which resource is the dependant.
It could be that Jira is where bugs and feature requests are logged, and those requests trigger Freshdesk activities. In that case, you should only have a link from Jira to Freshdesk. Updating an issue in Freshdesk in this scenario is interesting, but not relevant to the Jira issue.
I craeted a page in confluence with Jira filters. When I try to do mail the page using the provision "Email This Page". I am getting the following preview,
Only the static data is loaded but the data from Jira filter is not loaded to the mail content. How can I mail the Jira filter data from Confluence?
Converting to PDF works fine with Jira filter data.
I was just wondering if there was anyway to retrieve information from a Jira ticket and assign it to a variable in Jenkins.
So (just an example) - I'd like to save label from a ticket as $Jira_Label
You can send a REST request to JIRA and retrieve the information, like the label, of a specified issue.
Here there is the list of the available requests you can send.
I have configured remote trigger url with token for all the projects using my jenkins instance to trigger the Jobs.
http://jenkins_url/view/Test/job/Test/build?token=test
On clicking the url, a blank screen shows up. I have given view permission to anonymous user. Is there a way I can display a success/failure message on clicking the url. Project teams find the blank page annoying. Please help.
I searched for other similar questions on SO, but could not find anything worth trying.
Remote trigger url isn't mean for humans to use - it's there for automation. If you need a link for your end-users to click - simply give them the regular
http://jenkins_url/view/Test/job/Test/build?delay=0sec and grant everyone build permissions.