Skip to content

Commit

Permalink
chore: add missing parameter target for a ruleset
Browse files Browse the repository at this point in the history
  • Loading branch information
netomi committed Oct 21, 2024
1 parent b0ef9fc commit 5a44569
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## [0.9.2] - 2024/10/21

### Added

- Added missing parameter `target` for a ruleset.

## [0.9.1] - 2024/10/07

### Added
Expand All @@ -10,7 +16,6 @@

- Converted status check related configurations of a ruleset to an embedded model.


## [0.9.0] - 2024/09/26

### Changed
Expand Down Expand Up @@ -41,14 +46,12 @@
- Updated reference to Eclipse Otterdog app as its slug has changed.
- Removed default values for deprecated and obsolete organization settings.


## [0.8.3] - 2024/06/05

### Added

- Added configuration for code scanning default setup of a repository.


## [0.8.2] - 2024/04/04

### Changed
Expand Down
3 changes: 2 additions & 1 deletion otterdog-defaults.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ local newRepo(name) = {

# branch protection rules
branch_protection_rules: [],

# rulesets
rulesets: []
};
Expand Down Expand Up @@ -166,6 +166,7 @@ local newStatusChecks() = {
local newRepoRuleset(name) = {
name: name,
enforcement: "active",
target: "branch",

include_refs: [],
exclude_refs: [],
Expand Down

0 comments on commit 5a44569

Please sign in to comment.