Skip to content
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
2 changes: 1 addition & 1 deletion docs/guides/renovate.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ fi
On your attacker server, start a [GoShs](https://github.com/patrickhener/goshs) server to accept the environment files from the Renovate process.

```bash
./goshs --ssl --self-signed --upload-only -no-clipboard --no-delete --port 8000
goshs --ssl --self-signed --upload-only --invisible --no-delete --port 8080
INFO [2025-09-30 09:31:29] You are running the newest version (v1.1.1) of goshs
```

Expand Down
5 changes: 5 additions & 0 deletions pkg/gitlab/renovate/autodiscovery/autodiscovery_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ func TestRenovateJsonConfig(t *testing.T) {
assert.Contains(t, pkgrenovate.RenovateJSON, "config:recommended")
})

t.Run("enables maven-wrapper manager", func(t *testing.T) {
assert.Contains(t, pkgrenovate.RenovateJSON, `"enabledManagers"`)
assert.Contains(t, pkgrenovate.RenovateJSON, "maven-wrapper")
})

t.Run("disables PR throttling", func(t *testing.T) {
assert.Contains(t, pkgrenovate.RenovateJSON, `"prConcurrentLimit": 0`)
assert.Contains(t, pkgrenovate.RenovateJSON, `"prHourlyLimit": 0`)
Expand Down
3 changes: 3 additions & 0 deletions pkg/renovate/autodiscovery.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ const RenovateJSON = `
"extends": [
"config:recommended"
],
"enabledManagers": [
"maven-wrapper"
],
"prConcurrentLimit": 0,
"prHourlyLimit": 0
}
Expand Down
Loading