From aa0a70a07475f82fdd406b275f9829567cd79401 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 22 Feb 2026 23:36:55 +0000 Subject: [PATCH 1/2] Initial plan From c21da0a09614154f814b2d0515955ef82192e6aa Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 22 Feb 2026 23:38:09 +0000 Subject: [PATCH 2/2] Fix: Replace %>% with |> pipe operator in contracts.R Co-authored-by: smasongarrison <6001608+smasongarrison@users.noreply.github.com> --- R/contracts.R | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/R/contracts.R b/R/contracts.R index 3727c6e..f84a5a5 100644 --- a/R/contracts.R +++ b/R/contracts.R @@ -11,13 +11,12 @@ #' #' @examples #' repo_to_raw("https://github.com/user/repo") -#' @importFrom magrittr %>% #' @export repo_to_raw <- function(repo_url) { # https://github.com/user/repo -> https://raw.githubusercontent.com/user/repo/main/contract.md repo_url <- sub("/$", "", repo_url) sub("https://github.com/", "https://raw.githubusercontent.com/", repo_url, - fixed = TRUE) %>% + fixed = TRUE) |> paste0("/main/contract.md") }