Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/extractors.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,10 @@ describe("commit message magic word behavior", () => {
"completes",
"completed",
"completing",
"implement",
"implements",
"implemented",
"implementing",
])("closing keyword '%s' extracts issue", (keyword) => {
const result = extractLinearIssueIdentifiersForCommit({
sha: "abc",
Expand Down
4 changes: 4 additions & 0 deletions src/extractors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ const CLOSING_WORDS = [
"completes",
"completed",
"completing",
"implement",
"implements",
"implemented",
"implementing",
];

/** Magic phrases that indicate a commit contributes to an issue. Matches Linear's detection. */
Expand Down
Loading