Skip to content

Commit

Permalink
vx: filter out file names from commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
ealush committed Mar 20, 2022
1 parent bee4ba8 commit 1895a9a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ function listAllChangesSinceStableBranch() {
commit
.split('\n') // split each line of each commit
.filter(Boolean) // ignore empty lines
.filter(line => !line.match(IGNORE_PATTERN)) // ignore excluded terms
)
.filter(([title]) => !title.match(IGNORE_PATTERN)) // ignore excluded terms
.map(([title, ...files]) => ({
title,
files,
Expand Down

1 comment on commit 1895a9a

@vercel
Copy link

@vercel vercel bot commented on 1895a9a Mar 20, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

vest-next – ./website

vest-next-ealush.vercel.app
vest-next-git-latest-ealush.vercel.app
vest-website.vercel.app
vest-next.vercel.app

Please sign in to comment.