Create the template for standard issue on gitlab
gl_add_template_issue.Rd
Create the template for standard issue on gitlab
Arguments
- project_path
Path to the project
- language
Language. Should be one of 'fr' or 'en'
- type
Verbosity of comments in the template. Should be 'full' or 'light'.
Examples
# Try with a temp project
## Create temp dir and file
project_path <- tempfile("myproject")
dir.create(project_path)
## Add the template in full french
gl_add_template_issue(project_path, language = "fr", type = "full")
#> Issue template added, find it when creating a new issue on the graphical interface
## Add the template in full english
gl_add_template_issue(project_path, language = "en", type = "full")
#> Issue template added, find it when creating a new issue on the graphical interface
## Add the template in light french
gl_add_template_issue(project_path, language = "fr", type = "light")
#> Issue template added, find it when creating a new issue on the graphical interface
## Add the template in light english
gl_add_template_issue(project_path, language = "en", type = "light")
#> Issue template added, find it when creating a new issue on the graphical interface
# Suppress tmp folder
unlink(project_path, recursive = TRUE)