Blog Posts
Post Schedules |
---|
automation bits |
Blog Posts
-
Automation Bits: Creating a Code Repository for Reusability
created by
Jul 13, 2024
-
Automation Bits: Linking Issues with Easy for Jira
created by
Jul 09, 2024
-
Automation Bits: Search for Issues using JQL in Easy for Jira
created by
Jul 03, 2024
-
Automation Bits: Edit an Issue in Easy for Jira
created by
Jul 01, 2024
-
Automation Bits: Transitioning an Issue in Easy for Jira
created by
Jun 26, 2024
-
Automation Bits: Assigning users with Easy for Jira
created by
Jun 24, 2024
-
A common case - Time in Status calculation
created by
May 11, 2024
-
Why to use Python on Jira?
created by
Apr 16, 2024
-
Exploring How Automating Small Actions Generates Long-Term Savings for Your Company (with Math for Nerds)
created by
Apr 11, 2024
-
Become an EFJ Champion
created by
Apr 08, 2024
-
Limitations in Automation for Jira usage, what to do? Roll to Premium or get an app instead?
created by
Apr 05, 2024
-
Machine Work being performed by people, how companies solve the problems the wrong(?) way and how you can fix that
created by
Apr 04, 2024
-
Announcement: Documentation is now Live!
created by
Apr 04, 2024
Ongoing Series
The ongoing series are series of posts for teaching the end user on how to use the app or providing some guidance on the ecossystem
Series #1 - Automation Bits
Howdy!
This is the sixth post on Automation Bits, a series for connecting the dots for technical and non-technical users.
Today’s bit is: Creating a Code Repository for Reusability
Code Repository is one of the functionalities that makes EFJ Stand out in the crowd, It is possible with the Code Repository functionality.
The code repository is useful for sharing code around your Post Functions and Listeners
How to create a code repository?
Creating a code repository is quite simple,…
Howdy!
This is the fifth post on Automation Bits, a series for connecting the dots for technical and non-technical users.
Today’s bit is: Linking Issues with Easy for Jira
is possible with the built-in Issue wrapper
issue.link_to("<issuekey>", "<link type name>")
The link_issues function in the issue wrapper accepts 2 required arguments:
The outbound issue key (<issuekey>)
The link type name, such as “Relates To"
Examples of Usage
Use cases for linking are common, but it’s hard to find good examples to explain,</issuekey></issuekey></link>…
Howdy!
This is the fourth post on Automation Bits, a series for connecting the dots for technical and non-technical users.
Today’s bit is: Search for Issues (JQL) in Easy for Jira
is possible with the built-in API Wrapper api.search_issues(jql)
api.search_issues("project = EFJ and issuetype = Task")
The search_issues function in the API wrapper accepts a single argument
The JQL (Jira Query Language), which is a string.
Examples of Usage
The use cases are endless,…
Howdy!
This is the third post on Automation Bits, a series for connecting the dots for technical and non-technical users.
Today’s bit is: Edit an Issue in Easy for Jira
is possible with the built-in Issue functionality “set(field_key, value)".
issue.set("summary", "new summary")
The set function accepts 2 required inputs.
The field key, which can be system or custom fields.
The value you will set for that issue field.
Examples of Usage
The use cases are limited to fields,…
Howdy!
This is the second post on Automation Bits, a series for connecting the dots for technical and non-technical users.
Today’s bit is: Transitioning an Issue in Easy for Jira
is possible with the built in Issue functionality “transition(target_status or id)".
issue.transition("Target Status Name" or <TransitionID>)
The transition function accepts 2 possible inputs.
The target status name (case insensitive).
The Transition ID acquired from the “Transitions" workflow section.</TransitionID>…
Howdy!
This is the start of a series of small posts about how to use a single functionality in Easy for Jira, with the goal of connecting the dots for technical and non-technical users.
Today’s bit is: Assigning users with Easy for Jira
is possible with the built in Issue functionality “assign_to(user)".
issue.assign_to(<user refference>)
The assign_to function accepts 2 possible inputs.
User object from the Issue (issue.fields.reporter, issue.fields.customfield_100xx) - user picker
The user accountId,</user>…
Easy for Jira - Python Automations, 2023