Skip to content

Commit 2d3db49

Browse files
authored
Merge pull request #1594 from Morganov/feature/exclude-bot-from-contributors-list
Exclude dependabot from contributors list
2 parents 1cf691e + abcdca0 commit 2d3db49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace :book do
1717
date_string = Time.now.strftime("%Y-%m-%d")
1818
params = "--attribute revnumber='#{version_string}' --attribute revdate='#{date_string}'"
1919
puts "Generating contributors list"
20-
`git shortlog -s | grep -v -E "(Straub|Chacon)" | cut -f 2- | column -c 120 > book/contributors.txt`
20+
`git shortlog -s | grep -v -E "(Straub|Chacon|dependabot)" | cut -f 2- | column -c 120 > book/contributors.txt`
2121

2222
puts "Converting to HTML..."
2323
`bundle exec asciidoctor #{params} -a data-uri progit.asc`

0 commit comments

Comments
 (0)