Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Managing HR processes in Jira is a great option for small software companies who are already using Jira and who don’t have, or necessarily need, dedicated HR software. Employee onboarding and offboarding are key processes that can be easily managed in Jira.

...

  • Product: Jira Work Management

  • Apps: Issue Checklist for Jira Pro

  • Workflow & Issue Type: HR Onboarding project template

  • Set-up Tasks:

    • Workflow modifications

    • Checklist template

    • Automation rules

Workflow

We can expand our Onboarding Workflow to accommodate the entire lifecycle of an employee by adding a few more statuses:

...

Since members of multiple teams (HR, IT and Facilities) will be working on the issue, it’s good practice to add Workflow Conditions that only allows a member of the HR team (User is in group) to transition the issue to

Status
colourBlue
titleIN REVIEW
to
Status
colourBlue
titleONBOARDED
, and from
Status
colourBlue
titleFINAL REVIEW
to
Status
colourGreen
titleOFFBOARDED
.

EmployeeLifeCycleWorkflow.jpgImage Added

Checklist Template

As with onboarding, HR, IT and Facilities will each have multiple tasks in order to offboard the employee. However, there is not the same dependency-based order of operations. All three teams will need to prepare their tasks to be executed at the last minute. Therefore, all of the tasks can be listed in the same checklist, with separators to keep the checklist organized.

...

OffboardingList.pngImage Added

To create the Offboarding template, select Checklist from the left project nav bar. Then click Create template to create the checklist.

Tip

Tip: You can also add checklists that track the on/offboarding tasks for specific teams. See the example here.

Automation Rules

Using checklists in combination with automation is a great way to streamline repeated tasks and ensure that nothing slips through the cracks. This is example will use automation to:

  • Check todays date against the employee’s last day to trigger the process at the appropriate time

  • Clear the current local checklists (from the IT and Facilities onboarding process) off of the issue

  • Add the checklist

  • Change the issue statusAdd the checklist

  • Notify the appropriate team members

...

A second automation rule will change the status again once the checklist is complete.

...

To create the first rule:

...

Find the custom field ID of the Checklist Template field.

...

  1. Ensure that the Apply checklist templates from issue labels global setting is enabled.

  2. Select the Scheduled trigger.

  3. Set the rule to run once per day at the desired hour.

  4. Click the Run a JQL search and execute actions for each issue in the query checkbox

  5. Insert a JQL query that returns all issues that are in the

    Status
    colourBlue
    titleonboarded
    status have a Due date within the next two weeks due <= 2w AND status = Onboarded

  6. Click Save.

    Off1.pngImage Added

  7. Click New action

  8. Click Edit issue and select the Checklist Text field.

  9. Click Save. (This will clear the current checklist from the issue.)

  10. Click New action.

  11. Click Edit issue and

...

Paste the following code (where 10044 is the Checklist template custom field ID and “5” is the template ID) into the Additional fields text box.

Code Block
{
    "fields": {
              "customfield_10044" : "5"
              }
}

    }
}

...

Click Save.

  1. select Labels as the field to be edited.

  2. Select or add the label that corresponds to the appropriate template (Offboarding).

  3. Click Save.

    Off2.pngImage Added

  4. Click New action.

  5. Select Transition issue.

  6. Select

    Status
    colourBlue
    titleOffboarding
    as the destination status.

  7. Click Save.

    OffThree.pngImage Added

  8. Optionally, you may want to add an additional action to set the Assignee or notify a member of the HR team.

  9. Name the rule and click Turn it on.

To create the second rule:

  1. Navigate to Project Settings > Automation (or Jira Settings > System > Automation rules).

  2. Click Create rule.

  3. Select the Field value changed trigger.

  4. Select

    1. Checklist Completed in the Fields to monitor for changes dropdown

    2. Any changes to the field value in the Change type dropdown

    3. Edit issue in the For dropdown

  5. Click Save.

    Fin1.pngImage Added

  6. Click New condition and select Issue fields condition.

    1. Select Checklist Completed from the Fields dropdown

    2. Select equals in the Condition dropdown

    3. Type All Completed as the Value text box.

  7. Click Save.

    Fin2.pngImage Added

  8. Click Add component and select New action.

  9. Select Transition issue.

  10. Select

    Status
    colourBlue
    titleFINAL REVIEW
    as the destination status and click Save.

    Fin3.pngImage Added

  11. Optionally, you may want to add a second action to set the Assignee or notify a member of the HR team.

  12. Name the rule and click Turn it on.

Issue Life Cycle

  1. The supervisor notifies HR that an employee is going to be leaving the organization.

  2. HR sets the Due date field as the employee’s last day of employment.

  3. The automation rule is triggered when the Due date is within two weeks of the current date.

  4. The issue is transitioned to the

    Status
    colourBlue
    titleOFFBOARDING
    status, the Offboarding checklist is automatically added to the issue (replacing the Onboarding checklists) and appropriate team members are notified.

  5. When the teams have completed the checklist items, the issue is automatically transitioned to

    Status
    colourBlue
    titleFinal review
    .

  6. A member of the HR team reviews the issue, sees that all onboarding tasks have been completed and transitions the issue to

    Status
    colourGreen
    titleoffboarded
    .