Skip to content

Commit

Permalink
Fix label filter
Browse files Browse the repository at this point in the history
  • Loading branch information
rtsao committed Oct 26, 2017
1 parent c41de3e commit eb43f8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ async function notesForCommits(context, commits) {
});

changes = changes.filter(change => {
return !change.labels.some(label => config.ignore.includes(label));
return !change.labels.some(label => config.ignore.includes(label.name));
});

const prNums = changes.reduce((acc, change) => {
Expand Down

0 comments on commit eb43f8e

Please sign in to comment.