File tree Expand file tree Collapse file tree 3 files changed +6
-0
lines changed
lib/rails/generators/rails Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change
1
+ * Introduce ` RAILS_MASTER_KEY ` placeholder in generated ci.yml files
2
+
3
+ * Steve Polito*
4
+
1
5
* Colorize the Rails console prompt even on non standard environments.
2
6
3
7
* Lorenzo Zabot*
Original file line number Diff line number Diff line change @@ -127,6 +127,7 @@ jobs:
127
127
<%- elsif options[:database] == "postgresql" -%>
128
128
DATABASE_URL: postgres://postgres:postgres@localhost:5432
129
129
<%- end -%>
130
+ # RAILS_MASTER_KEY: ${{ secrets.RAILS_MASTER_KEY }}
130
131
# REDIS_URL: redis://localhost:6379/0
131
132
<%- if options[:api] || options[:skip_system_test] -%>
132
133
run: bin/rails db:test:prepare test
Original file line number Diff line number Diff line change 91
91
<%- elsif options[:database] == "postgresql" -%>
92
92
DATABASE_URL: postgres://postgres:postgres@localhost:5432
93
93
<%- end -%>
94
+ # RAILS_MASTER_KEY: ${{ secrets.RAILS_MASTER_KEY }}
94
95
# REDIS_URL: redis://localhost:6379/0
95
96
run: <%= test_command %>
96
97
You can’t perform that action at this time.
0 commit comments