diff --git a/vignettes/download_github_comments.Rmd b/vignettes/download_github_comments.Rmd index 0f33ace3..aece5df6 100644 --- a/vignettes/download_github_comments.Rmd +++ b/vignettes/download_github_comments.Rmd @@ -44,7 +44,7 @@ Therefore, in this Notebook we have to rely on three endpoints from the GitHub A To use the pipeline, you must specify the organization and project of interest, and your token. Obtain a github token following the instructions [here](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token). ```{r} -conf <- parse_config("conf/kaiaulu.yml") +conf <- parse_config("../conf/kaiaulu.yml") save_path_issue_refresh <- get_github_issue_search_path(conf, "project_key_1") save_path_issue <- get_github_issue_path(conf, "project_key_1") diff --git a/vignettes/gitlog_entity_showcase.Rmd b/vignettes/gitlog_entity_showcase.Rmd index 05bbf3f0..9cdf0779 100644 --- a/vignettes/gitlog_entity_showcase.Rmd +++ b/vignettes/gitlog_entity_showcase.Rmd @@ -32,8 +32,8 @@ require(knitr) # Project Configuration File ```{r} -tool <- parse_config("tools.yml") -conf <- parse_config("conf/kaiaulu.yml") +tool <- parse_config("../tools.yml") +conf <- parse_config("../conf/kaiaulu.yml") # 3rd Party Tools perceval_path <- get_tool_project("perceval", tool) diff --git a/vignettes/gitlog_showcase.Rmd b/vignettes/gitlog_showcase.Rmd index 3a4c198a..086e72b2 100644 --- a/vignettes/gitlog_showcase.Rmd +++ b/vignettes/gitlog_showcase.Rmd @@ -66,8 +66,8 @@ The file makes all assumptions explicit to you when using the code. Note these a The following code block reads the information explained just now: ```{r} -tool <- parse_config("tools.yml") -conf <- parse_config("conf/kaiaulu.yml") +tool <- parse_config("../tools.yml") +conf <- parse_config("../conf/kaiaulu.yml") perceval_path <- get_tool_project("perceval", tool) git_repo_path <- get_git_repo_path(conf) git_branch <- get_git_branches(conf)[1]