Skip to content

Commit bb5af63

Browse files
committed
More changes
1 parent a9f2cae commit bb5af63

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

configure_git_repository.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ Please stick to it unless you have special needs.
77
* Features: Remove *Wikis*, *Issues* and *Projects*
88
* Pull Requests
99
* Disable *Allow merge commits* and *Allow rebase merging*
10+
* Always suggest updating pull request branches
1011
* Allow auto-merge
1112
* Automatically delete head branches
12-
* Always suggest updating pull request branches
1313
* Manage access
1414
* Add *staff* team as a collaborator with Admin access
1515
* Add *security* team as collaborator with Write access
@@ -18,13 +18,13 @@ Please stick to it unless you have special needs.
1818
* Rules/Rulesets
1919
* `develop`
2020
* Enforcement status: `Active`
21-
* Branch targeting criteria: `develop`
2221
* Bypass list: add `Repository Admin` Role with *allow for pull requests only* option
22+
* Branch targeting criteria: `develop`
2323
* Restrict deletions
2424
* Require linear history
2525
* Require a pull request before merging
2626
* Require status checks to pass
27-
* Select `ci/semaphore/push`
27+
* Select `ci/semaphore/push` (WRONG. NOT AVAILABLE NOW)
2828
* Block force pushes
2929
* `main` (same as develop but...)
3030
* Branch targeting criteria: `main`

ruby_on_rails/app_initialisation.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ Check existing projects for an example of the usage.
7474
* Update `config/application.rb` and set the default language and timezone
7575

7676
```ruby
77-
config.time_zone = 'Zurich' # may vary
78-
config.i18n.default_locale = :de # may vary
77+
config.time_zone = 'Zurich'
78+
config.i18n.default_locale = :de
7979
```
8080

8181
* Update your `config/environments/production.rb` settings:
@@ -91,9 +91,7 @@ Check existing projects for an example of the usage.
9191
config.action_controller.action_on_unpermitted_parameters = :raise
9292
config.i18n.raise_on_missing_translations = :strict
9393

94-
config.generators do |g|
95-
g.apply_rubocop_autocorrect_after_generate!
96-
end
94+
config.generators.apply_rubocop_autocorrect_after_generate!
9795
```
9896

9997
* Update `config/environments/test.rb` settings:

0 commit comments

Comments
 (0)