Skip to content

Commit

Permalink
README.md is not an overlay
Browse files Browse the repository at this point in the history
  • Loading branch information
SkySkimmer authored and Zimmi48 committed Jul 5, 2024
1 parent 8f3d44f commit 30d3407
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 30d3407

Please sign in to comment.