Is it possible to add tags when publishing pins to R Connect?
How I have been publishing pins to connect
pins::pin_write(board = board,
name = "dataset_name",
x = df,
title = "Super awesome dataset",
description = "My super awesome dataset",
versioned = TRUE)
What I am hoping we can do...or something like that
pins::pin_write(board = board,
name = "dataset_name",
x = df,
title = "Super awesome dataset",
description = "My super awesome dataset",
versioned = TRUE,
tags = c("climate", "weather"))