Hey @David Ham Welcome to Atlassian Community!!Yes it works, you can both !!As long as you mention the Issue-key in commit message/PR it should link to jira issue and show up in Jira development panel.Github Commit:Jira Issue Development panel:Hope this helps !! Regards,Vishwas Answer from Vishwas on community.atlassian.com
🌐
GitHub
github.com › integrations › jira › issues › 354
Identifying JIRA tickets in conventional-commits · Issue #354 · atlassian/github-for-jira
May 5, 2020 - stay tunedWe have a ticket in our backlog and will update contributor when work commencesWe have a ticket in our backlog and will update contributor when work commences ... We use https://www.conventionalcommits.org/en/v1.0.0/ in our team. ... We see that if we do re #[JIRA-ID] in the commit, then it links to JIRA when we create a PR.
Author   gazal-k
🌐
GitHub
github.com › Skywalker427 › jira-conventional-commit
GitHub - Skywalker427/jira-conventional-commit: Generate conventional commits with jira ticket information · GitHub
Validates branch names using a JIRA ticket pattern. Maps commit type aliases to conventional commit types. Generates formatted conventional commit messages. Provides a staged file list for confirmation before committing.
Author   Skywalker427
Discussions

Customize commitlint with conventional commit + JIRA Ticket - Stack Overflow
I am using commit lint and I want to use conventional commits but i want to include a Jira Ticket. Example TEST-23: fix: my body More on stackoverflow.com
🌐 stackoverflow.com
How to configure commitlint for conventional commits with JIRA ticket integration
I’m working on a project where we need to enforce commit message standards using commitlint. We want to follow the conventional commit format but also need to include JIRA ticket numbers in our commit messages. For example, I want my commits to look like this: PROJ-456: feat: add new user ... More on community.latenode.com
🌐 community.latenode.com
0
0
June 10, 2025
How do you link commits to tickets ?
In my company we always create a branch starting with the ticket ID. There is a pre commit script that adds this ID to your commit, and since we use Jira and bitbucket, this ID becomes a link to the ticket in the repository More on reddit.com
🌐 r/ExperiencedDevs
71
15
April 18, 2023
Why do I choose to use conventional commit specifications: feat, doc, chore, fix
I don’t buy this conventional commit thing. I admit do look nice when you have a library and generate change log for it. But as an application developer, I write my commits for people, not for tools. In addition, my commits are not a feature or doc. A feature will most likely be many commits, and the docs will be written simultaneously. So what standards do I follow? I do follow the title length and blank line before description standard. I do follow the refs at the end standard. I do follow the imperative standard, the atomic commit standard and the write something that is actually helpful for the next person standard. More on reddit.com
🌐 r/git
25
20
March 13, 2024
🌐
Stack Overflow
stackoverflow.com › questions › 76765811 › customize-commitlint-with-conventional-commit-jira-ticket
Customize commitlint with conventional commit + JIRA Ticket - Stack Overflow
const jiraTicketRegex = /^[A-Z]+-\d+$/; module.exports = { extends: ['@commitlint/config-conventional'], rules: { 'subject-case': [2, 'always', 'sentence-case'], 'header-max-length': [2, 'always', 100], 'jira-ticket-format': [2, 'always'], }, parserPreset: { parserOpts: { headerPattern: /^([A-Z]+-\d+)\s*:\s*(\w*): (.*)$/, headerCorrespondence: ['ticket', 'type', 'subject'], }, }, plugins: [ { rules: { 'jira-ticket-format': (parsed) => { const ticket = parsed.ticket; if (!jiraTicketRegex.test(ticket)) { return [ false, `Wrong format".`, ]; } return [true]; }, }, }, ], };
🌐
Heristop
heristop.github.io › home › blog › implementing conventional commits with jira ticket prefix validation
Implementing Conventional Commits with Jira Ticket Prefix Validation
July 9, 2024 - Commits with or without a Jira ticket are valid as long as they follow the other rules (correct type, lowercase description, etc.) Initialize Husky to initialize a commit message hook: ... #!/bin/sh .
🌐
Latenode
community.latenode.com › other questions › jira
How to configure commitlint for conventional commits with JIRA ticket integration - Jira - Latenode Official Community
June 10, 2025 - I’m working on a project where we need to enforce commit message standards using commitlint. We want to follow the conventional commit format but also need to include JIRA ticket numbers in our commit messages. For example, I want my commits to look like this: PROJ-456: feat: add new user ...
🌐
Atlassian
jira.atlassian.com › browse › JRACLOUD-90010
Allow Conventional Commits for issue linking - Jira - Atlassian
Please don’t include Customer or Sensitive data in the JAC ticket. ... Currently, the smart commit does not allow other formats of commits, for example, the Conventional Commits. It would be great to link a commit to an existing Jira issue using the Conventional Commits format.
Find elsewhere
🌐
GitHub
github.com › floydspace › jira-prepare-conventional-commit-msg
GitHub - floydspace/jira-prepare-conventional-commit-msg: Husky Git hook to add JIRA ticket ID into the scope of conventional commit message. · GitHub
The husky command to add JIRA ticket ID into the scope of conventional commit message if it is missed. The JIRA ticket ID is taken from a git branch name. Installing Jira prepare commit msg hook into your project will mean everyone contributing ...
Author   floydspace
🌐
DEV Community
dev.to › itxshakil › commit-like-a-pro-a-beginners-guide-to-conventional-commits-34c3
Commit Like a Pro: A Beginner’s Guide to Conventional Commits - DEV Community
February 5, 2025 - Now that you’re familiar with the basics, it’s time to implement Conventional Commits in your workflow: Start writing commit messages using the feat, fix, docs, and chore types. Use the <type>[optional scope]: <description> format for commit headers. Include meaningful commit bodies and footers. Reference Jira tickets in your commits using #issue-number or Fixes #issue-number.
🌐
DEV Community
dev.to › visuellverstehen › new-git-guidelines-we-have-switched-to-conventional-commits-1p0c › comments
[Discussion] New git guidelines: We have switched to Conventional Commits — DEV Community
October 22, 2022 - Auto write a comment with the ticket so it links to JIRA. Force delete branch on merge. Like... None of this should be optional and you don't need inconsistency in team projects it just makes context switching harder than it needs to be. ... I would say no to ticket references. I always open a GitHub issue with details of that said source ticket in, but not just the ticket number. A migration from an old in-house solution to ServiceNow made many of our legacy commit comments completely useless when trying to understand why a bit of code was added.
🌐
Lhowsam
lhowsam.com › blog › conventional-commits-a-better-way-to-commit
Conventional commits, a better way to commit | lhowsam.com
While I like conventional commits, I don't use it typically on every project. I've found it's quite common to just follow the convention of using the Jira ticket number as a template for a commit message such as:
🌐
DEV Community
dev.to › luchfilip › making-git-commit-messages-useful-with-jira-jenkins-and-scopes-5759
Making git commit messages useful with Jira, Jenkins and scopes - DEV Community
March 1, 2019 - ticket(carousel):report to analytics when slider is visible ... whenever delivering builds, Jenkins will create a changelog based on the diff between last built commit and current commit. It will have references to both Jira tickets and GitHub commit for every commit.
🌐
Medium
medium.com › @sagormahtab › mastering-commit-messages-the-ultimate-guide-to-conventional-commits-96f038da6bdf
Mastering Commit Messages: The Ultimate Guide to Conventional Commits | by Mahtab Hossain | Medium
September 4, 2023 - Include Conventional commit type prefixes. Reference JIRA ticket numbers or links if applicable. If a commit has multiple changes, consider breaking it into several commits. Avoid ending messages with punctuation.
🌐
Atlassian
jira.atlassian.com › browse › JSWCLOUD-23996
Allow Conventional Commits for issue linking
Please don’t include Customer or Sensitive data in the JAC ticket. ... Our product teams collect and evaluate feedback from a number of different sources. To learn more about how we use customer feedback in the planning process, check out our new feature policy. Currently, the smart commit does not allow other formats of commits, for example, the Conventional Commits. It would be great to link a commit to an existing Jira issue using the Conventional Commits format.
🌐
Medium
armen-mkrtchian.medium.com › automatically-add-jira-ticket-numbers-to-git-commits-a-step-by-step-guide-githook-b52ace18c6a5
Automatically Add JIRA Ticket Numbers to Git Commits: A Step-by-Step Guide (githook) | by Armen Mkrtchian | Medium
September 5, 2023 - This script automatically extracts ... commit message. Now, when you commit on a branch with a JIRA ticket number in its name, the commit message will have that ticket number prepended automatically!...
🌐
Atlassian
openedx.atlassian.net › wiki › spaces › AC › pages › 161880915 › Git+Best+Practices
Git Best Practices - Architecture and Engineering - Open edX Community Wiki
January 8, 2024 - JIRA links tickets to any commits that include that ticket's number · e.g. LEARNER-1696 - Getting issue details... STATUS · Commit messages should follow a regular format based on Conventional Commits.
🌐
DEV Community
dev.to › danywalls › how-to-improve-your-git-commit-messages-using-conventional-commits-49f5
How To Improve Your Git Commit Messages Using Conventional Commits - DEV Community
August 4, 2023 - Refs: #jira-ticket-number or pbi ... You have additional options such as test, revert, build, ci, styles, or BREAKING CHANGE. For more options, please refer to the official documentation. I prefer to use an extension instead of writing every time or make it easy with a single click, integrating it into my IDE or terminal. VSCode: https://marketplace.visualstudio.com/items?itemName=vivaxy.vscode-conventional-commits
🌐
PyPI
pypi.org › project › cz-github-jira-conventional
cz-github-jira-conventional
August 13, 2021 - JavaScript is disabled in your browser · Please enable JavaScript to proceed · A required part of this site couldn’t load. This may be due to a browser extension, network issues, or browser settings. Please check your connection, disable any ad blockers, or try using a different browser
🌐
npm
npmjs.com › package › @digitalroute › cz-conventional-changelog-for-jira
@digitalroute/cz-conventional-changelog-for-jira - npm
May 5, 2023 - Part of the commitizen/cz-cli family. Prompts for conventional changelog standard and also prompts for a mandatory JIRA issue.
      » npm install @digitalroute/cz-conventional-changelog-for-jira
    
Published   May 05, 2023
Version   8.0.1
Author   Marcus Johansson
🌐
Reddit
reddit.com › r/experienceddevs › how do you link commits to tickets ?
r/ExperiencedDevs on Reddit: How do you link commits to tickets ?
April 18, 2023 - In my company we always create a branch starting with the ticket ID. There is a pre commit script that adds this ID to your commit, and since we use Jira and bitbucket, this ID becomes a link to the ticket in the repository