Skip to content

Commit

Permalink
Merge pull request #218 from derecklhw/main
Browse files Browse the repository at this point in the history
Filter the github-actions[bot] from the contributors list
  • Loading branch information
MrSunshyne authored Aug 26, 2024
2 parents 039c053 + 3098c5d commit aca1477
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/frontendmu-data/scripts/update-contributors.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ async function updateContributors() {
})
.filter((contributor) => {
// Exclude the following contributors from the list
const excludedContributors = ["actions-user"];
const excludedContributors = ["actions-user", "GitHub Action[bot]", "GitHub Action"];
return !excludedContributors.includes(contributor.username);
});

Expand Down

0 comments on commit aca1477

Please sign in to comment.