diff options
author | Alexander Foremny <aforemny@posteo.de> | 2023-11-07 14:53:26 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2023-11-07 14:54:04 +0100 |
commit | d9400635bcb28674c8510d71aa6eed94194bf669 (patch) | |
tree | 537bbad294aa4cfee520de5f4edd874a6b49ee63 /app/History/CommitInfo.hs | |
parent | 6b912f5b477de3374dee38661e0acf72920d4f5e (diff) |
add issue marker as internal tag @type
Diffstat (limited to 'app/History/CommitInfo.hs')
-rw-r--r-- | app/History/CommitInfo.hs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/History/CommitInfo.hs b/app/History/CommitInfo.hs index c24fcd9..865fcc4 100644 --- a/app/History/CommitInfo.hs +++ b/app/History/CommitInfo.hs @@ -59,7 +59,11 @@ fromPartialCommitInfos (partialCommitInfo : partialCommitInfos) = ) <$> old.provenance <*> new.provenance, - internalTags = I.internalTags new.title old.provenance + internalTags = + I.internalTags + new.title + old.provenance + (I.tagValuesOf "type" new.internalTags) } ) ( \old -> |