From 2e2f3fa527ccc8d9a6ee02bd3c73d6e9ee35620d Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 25 Jun 2024 16:35:09 -0400 Subject: Add github.c and github.h * Implements get_github_release_notes() --- include/github.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 include/github.h (limited to 'include') diff --git a/include/github.h b/include/github.h new file mode 100644 index 0000000..eb24753 --- /dev/null +++ b/include/github.h @@ -0,0 +1,8 @@ +#ifndef STASIS_GITHUB_H +#define STASIS_GITHUB_H + +#define STASIS_GITHUB_API_VERSION "2022-11-28" + +int get_github_release_notes(const char *api_token, const char *repo, const char *tag, const char *target_commitish, char **output); + +#endif //STASIS_GITHUB_H \ No newline at end of file -- cgit