Description Usage Arguments Details Value See Also Examples
Delete a Circle CI environment variable for a specific project.
1 | delete_env(project, user, var, ...)
|
project |
A character string specifying the project name, or an object of class “circle_project”. If the latter, there is no need to specify |
user |
A character string specifying the user name. This is not required if |
var |
A character string specifying the name of an environment variable |
... |
Additional arguments passed to an HTTP request function, such as |
Delete a Circle CI environment variable for a specific project.
A logical.
1 2 3 4 5 6 7 8 9 | ## Not run:
# add environment variables
add_env(list_projects()[[1]], var = list(A = "123", B = "abc"))
# remove environment variables, one at a time
delete_env(list_projects()[[1]], var = "A")
delete_env(list_projects()[[1]], var = "B")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.