peer_assign
adds files from authors' repositories to review repositories. The function creates an issue on the reviewers' repositories informing them that the review files are available and creates links to the relevant documents.
peer_assign( org, roster, path = NULL, local_path_review = NULL, prefix = "", suffix = "", exclude_pattern = c(".gitignore", ".Rhistory", "*.Rproj", "*.html", "*.md", "*.pdf"), message = NULL, branch = "master", overwrite = FALSE )
org | Character. Name of GitHub Organization. |
---|---|
roster | Character. Data frame or file path of roster file with author-reviewer assignments. Must contain a column |
path | Character. File name or vector of file names to be included. If |
local_path_review | Character. Local file path of review feedback form to be added (must be .Rmd document), defaults to |
prefix | Character. Common repository name prefix. |
suffix | Character. Common repository name suffix. |
exclude_pattern | Character. File extensions of files to not be moved to reviewer repositories if |
message | Character. Commit message, defaults to "Assigning review." |
branch | Character. Name of branch the file should be committed to, defaults to |
overwrite | Logical. Whether existing files in reviewers' repositories should be overwritten, defaults to |
Other peer review functions:
peer_file_add_aut()
,
peer_file_add_rev()
,
peer_form_create_rating()
,
peer_form_create_review()
,
peer_init()
,
peer_return()
,
peer_roster_create()
,
peer_score_rating()
,
peer_score_review()
if (FALSE) { peer_assign( org = "ghclass-test", roster = "hw2_roster_seed12345.csv", path = c("hw2_task.Rmd", "iris_data.csv"), form_review = "hw2_review.Rmd", prefix = "hw2-" ) }