Showing posts with label jira. Show all posts
Showing posts with label jira. Show all posts

April 23, 2024

Jira PowerBI: Automatic renaming of Columns to real field names

I share here how I have improved my Jira PowerBI Template to automatically rename the field columns by the real field names instead of their Ids.

February 26, 2024

Universal Date Picker with Calendar Week supporting Atlassian Tools (Jira, Confluence,...)

I have shared some time ago a small script for a universal date picker with calendar weeks displayed. Now in Jira and Confluence the date format is fixed to mm/dd/yyyy. Moreover, Confluence has a specific way of formatting dates. So I have adapted the tool to better integrate with Jira and Confluence. 
I share here the result.

February 9, 2024

Jira Cloud New Issue View and Quick Edit Hide when empty fields (Cloud Regression)

We have recently migrated our Jira from server to the Cloud and today I have hardly missed a feature related to quick edit of fields.

October 4, 2023

New PowerTool for Atlassian Tools

Let me introduce a new member in the PowerTools family: I have named it "Atlasy". 
It improves UX and productivity with the Atlassian-based tools like Jira, Confluence, R4J.

September 29, 2023

Jira-Excel Integration for bulk edit based on R4J Excel Plugin

I have presented in the R4J German User Group on 2023-09-20 how we use the R4J Excel Plugin to bridge Jira and Excel.

September 19, 2023

PowerBI: How to reorder a Legend

I share here a learning about how to reorder a Legend in a PowerBI Chart.

August 8, 2023

Excel Index Match

I have stumbled recently again upon the Index/Match combo and forgot that the 3rd argument in MATCH is most needed and shall be set to 0.

July 28, 2023

Jira: Quick Update Epic Link(s)

Post is currently in DRAFT. This post explains how you can quickly link issues in Jira to an Epic using an AutoHotkey script.

June 22, 2023

AutoHotkey Basic Authentification for REST API e.g. Jira

I have stumbled upon an issue in the b64 encoding function that broke the Basic Authentication when using a longer password e.g. API token.
I share in this post how I do REST API calls with a Basic Authentication example for Jira including the fix for this issue.

June 20, 2023

Jira Excel VBA Module with Basic functions

I share in this post some examples how to use Jira REST API from Excel VBA. This post is a WIP/Draft. If you are interested in me explaining more, leave a comment.

June 19, 2023

Jira: Add multiple links using R4J Excel Add-In and VBA macro

I share in this post a way to add multiple links to Jira issues using R4J Excel Add-In and additional VBA macros. This post is a DRAFT/WIP quick version. If you have questions about it, please leave a comment to let me know and I will update it.

June 14, 2023

Jira: Create multiple issue links by script

This post describes how to bulk add a link to issues in Jira using the API. This a draft/wip version. Comment if you want me to finalize it.

December 15, 2022

ScriptRunner: Create Comment or Write Text Field with Links

I didn't find any documentation for this one.
I wanted in a ScriptRunner listener to document the action done by the listener with a comment in the impacted issue, with a link in the comment pointing to the user documentation.

You can do this easily by formatting links with [linktext|linkurl]

Here is an example of code for a comment:

commentBody = "[Listener|https://confluenceroot/pages/viewpage.action?pageId=375883539] labelled the issue with 'suspect_mod' because parent issue ${issue.key} had following fields changed while in Status 'Closed':" + commentBody

// flag current issue
def issueManager = ComponentAccessor.getIssueManager()
def user = ComponentAccessor.jiraAuthenticationContext.loggedInUser
def commentManager = ComponentAccessor.getCommentManager()


// Add a comment to issue
commentManager.create(issue, user, commentBody, true)

December 8, 2022

ScriptRunner: Listener triggered on field change

Wanting to trigger a script upon an issue update and specifically upon changes on specific issue fields is a common use case in Jira. I have learned recently the right way to do it.

ScriptRunner Listener for Suspect flagging

I share in this post how to implement a suspect mechanism in Jira using a ScriptRunner listener.

November 7, 2022

Jira Workflow Triggered transitions

I share some learnings, concerns I've had recently concerning Jira Workflow triggered transition.

October 26, 2022

ScriptRunner Listener: Project Blacklist

There is no built-in way in the ScriptRunner UI to define a project blacklist. I share my learning here, how to do this.

October 14, 2022

Authenticator without mobile phone

I have learned recently a way to have an authenticator not only on my phone but in my browser on my PC - using a password manager extension.

October 7, 2022

ScriptRunner Listener for IssueLinkCreatedEvent or IssueLinkDeletedEvent: no current issue?

I have struggled a bit with implementing a Link Listener with Jira / Scriptrunner and share my learning here.

September 7, 2022

Jira Admin: How to order Workflow Transition Buttons

I share in this post how to set the order of the Workflow Transition Buttons in Jira.