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 › 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
GitHub
github.com › integrations › jira › issues › 354
Identifying JIRA tickets in conventional-commits · Issue #354 · atlassian/github-for-jira
May 5, 2020 - We use https://www.conventionalcommits.org/en/v1.0.0/ in our team. So our commits look like: type(scope): commit comment long description re #JIRA-ID · We see that if we do re #[JIRA-ID] in the commit, then it links to JIRA when we create a PR. But we'd prefer not to use the [] Reactions are currently unavailable · No one assigned · 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 ·
Author atlassian
How to do Jira issue linking with conventional commits?
I have a new team-managed project and I want to enable issue linking so I can see Github references in Jira. I'd also like to use conventional commits. But the Jira docs on issue linking say you need to have your Jira issue number at the beginning of your commit message/PR, which would break ... More on community.atlassian.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
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
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
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]; }, }, }, ], };
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 ...
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.
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
YouTube
youtube.com › watch
How to Customize Commitlint for Conventional Commits with JIRA Tickets - YouTube
Learn how to effectively configure Commitlint for conventional commits while including JIRA tickets. Simplify your commit messages and improve your version c...
Published April 7, 2025 Views 1
Atlassian
jira.atlassian.com › browse › JRACLOUD-90010
Allow Conventional Commits for issue linking
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.
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.
GitHub
github.com › deptz › jira-smart-commit
GitHub - deptz/jira-smart-commit: Automate your engineering workflow with JIRA context and AI. Generate high-quality Conventional Commits, structured PR Descriptions, and optimized Copilot Prompts directly from your JIRA tickets and staged changes. · GitHub
Result: The prompt is sent to GitHub Copilot Chat (auto-submitted or pasted) to help you plan the implementation. Generate a Conventional Commit message based on your staged changes and JIRA context.
Author deptz
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.
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.
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
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