Skip to content

Commit

Permalink
fix default for status rules config
Browse files Browse the repository at this point in the history
  • Loading branch information
thatportugueseguy committed Oct 18, 2024
1 parent 5a89c0c commit 4e55bbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/config.atd
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ type project_owners = {
type config = {
prefix_rules : prefix_rules;
label_rules : label_rules;
~status_rules <ocaml default="{allowed_pipelines = None; rules = []}"> : status_rules;
~status_rules <ocaml default="{allowed_pipelines = Some []; rules = []}"> : status_rules;
~project_owners <ocaml default="{rules = []}"> : project_owners;
~ignored_users <ocaml default="[]">: string list; (* list of ignored users *)
?main_branch_name : string nullable; (* the name of the main branch; used to filter out notifications about merges of main branch into other branches *)
Expand Down

1 comment on commit 4e55bbd

@yasunariw
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what is the issue that was fixed?

Please sign in to comment.