Skip to content

Instantly share code, notes, and snippets.

@b-kennedy0
Created August 5, 2021 17:23
Show Gist options
  • Save b-kennedy0/5f0a10402b8af9247a983796af75c370 to your computer and use it in GitHub Desktop.
Save b-kennedy0/5f0a10402b8af9247a983796af75c370 to your computer and use it in GitHub Desktop.
Notify using Integromat that your R Markdown script has finished.
```{r end of scipt, include=FALSE} # include=FALSE so not printed in your markdown
library(httr)
script_name <- "study#" # Put your script name here
url <- paste("https://hook.integromat.com/your_webhood_key_here/?script=",
script_name, sep = '')
POST(url)
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment