Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update CI files and a few tweaks #3122

Merged
merged 1 commit into from
Aug 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/pr-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ Style: ["style/*", "*style/*"]
CI: ["ci/*", "*ci/*"]
Performance: ["perf/*", "*perf/*", "performance/*", "*performance/*"]
Fixed-branch: ["fixed-branch-name", "*fixed-branch-name"]
"Developer Experience (DX)": ["dx/*"]
2 changes: 2 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ categories:
label: 'Style'
- title: '🎡 CI'
label: 'CI'
- title: '😎 Developer Experience (DX)'
label: 'Developer Experience (DX)'
- title: '⚡️ Performance'
labels:
- 'Perf'
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ group :test do
gem "database_cleaner-active_record"
end

gem "awesome_print"
gem "amazing_print"

group :development, :test do
gem "faker", require: false
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ GEM
csv
addressable (2.8.7)
public_suffix (>= 2.0.2, < 7.0)
amazing_print (1.6.0)
annotate (3.2.0)
activerecord (>= 3.2, < 8.0)
rake (>= 10.4, < 14.0)
Expand All @@ -155,7 +156,6 @@ GEM
avo-money_field (0.0.4)
money-rails (~> 1.12)
avo-record_link_field (0.0.1)
awesome_print (1.9.2)
aws-eventstream (1.3.0)
aws-partitions (1.962.0)
aws-sdk-core (3.201.3)
Expand Down Expand Up @@ -660,12 +660,12 @@ DEPENDENCIES
acts_as_list
actual_db_schema
addressable
amazing_print
annotate
appraisal
avo!
avo-money_field
avo-record_link_field
awesome_print
aws-sdk-s3
bootsnap (>= 1.4.2)
bump
Expand Down
1 change: 1 addition & 0 deletions spec/dummy/config/initializers/amazing_print.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
AmazingPrint.defaults = {ruby19_syntax: true, index: false}
2 changes: 1 addition & 1 deletion spec/dummy/config/puma.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# the maximum value specified for Puma. Default is set to 5 threads for minimum
# and maximum; this matches the default thread size of Active Record.
#
max_threads_count = ENV.fetch("RAILS_MAX_THREADS", 5)
max_threads_count = ENV.fetch("RAILS_MAX_THREADS", 3)
min_threads_count = ENV.fetch("RAILS_MIN_THREADS") { max_threads_count }
threads min_threads_count, max_threads_count

Expand Down
Loading