Skip to content

Commit

Permalink
Ignore GHA generated Ruby files
Browse files Browse the repository at this point in the history
The PRs generated by the GHA have some 400,000+ lines changed in them #71. That is because it 2,000+ files installed including all the gems installed and Ruby. This is definitively not what we want. This behavior is documented in https://github.com/ruby/setup-ruby/tree/v1/?tab=readme-ov-file#bundle-config that it will place the files in `vendor/bundle`. To exclude the directory, we can add it to our `.gitignore`.
  • Loading branch information
schneems committed Dec 17, 2024
1 parent ee45cc3 commit 58e31f5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
.DS_Store

.rundoc-workspace/

# Ignore GHA generated Ruby files
# https://github.com/ruby/setup-ruby/tree/v1/?tab=readme-ov-file#bundle-config
vendor/bundle

0 comments on commit 58e31f5

Please sign in to comment.