Skip to content

Commit

Permalink
Merge PR #306: README is not an overlay.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zimmi48 committed Jul 5, 2024
2 parents 072073f + 30d3407 commit 53ef64c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/actions.ml
Original file line number Diff line number Diff line change
Expand Up @@ -2187,7 +2187,9 @@ let rec merge_pull_request_action ~bot_info ?(t = 1.) comment_info =
if
string_match ~regexp:"dev/ci/user-overlays/\\(.*\\)"
f
then Str.matched_group 1 f :: acc
then
let f = Str.matched_group 1 f in
if String.equal f "README.md" then acc else f :: acc
else acc )
with
| [] ->
Expand Down

0 comments on commit 53ef64c

Please sign in to comment.