This commit is contained in:
grantbirki 2022-06-07 10:31:06 -06:00
Родитель da2f70d060
Коммит cf87f59c4a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 9029BBCCC15C6F8C
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -8,7 +8,7 @@
Your `entitlements-app` config `config/entitlements.yaml` runs through ERB interpretation automatically. You can extend your entitlements configuration to load plugins like so:
```
```ruby
<%-
unless ENV['CI_MODE']
begin
@ -27,7 +27,7 @@ Your `entitlements-app` config `config/entitlements.yaml` runs through ERB inter
You can then define `lib/entitlements-and-plugins` like so:
```
```ruby
#!/usr/bin/env ruby
# frozen_string_literal: true
@ -48,7 +48,7 @@ Any plugins defined in `lib/entitlements-and-plugins` will be loaded and used at
You can add automatic auditing to a separate GitRepo by enabling the following `entitlements.yaml` config:
```
```ruby
<%-
# NOTE: GITREPO_SSH_KEY must be base64 encoded.
sshkey = ENV.fetch("GITREPO_SSH_KEY")