Post custom plans (i.e. create milestones and issues) based on yaml read in by
read_plan. Please see the "Building Custom Plans" vignette for details.
post_plan(ref, plan, distinct = TRUE)
| ref | Repository reference (list) created by |
|---|---|
| plan | Plan list as read with |
| distinct | Logical value to denote whether issues with the same title
as a current open issue should be allowed. Passed to |
Dataframe with numbers (identifiers) of posted milestones and issues and issue title
Other plans and todos:
post_todo(),
read_plan(),
read_todo(),
report_plan(),
report_todo(),
template_yaml()
if (FALSE) { # This example uses example file included in pkg # You should be able to run example as-is after creating your own repo reference file_path <- system.file("extdata", "plan.yml", package = "projmgr", mustWork = TRUE) my_plan <- read_plan(file_path) post_plan(ref, my_plan) }