diff options
-rw-r--r-- | src/template_func_proto.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/template_func_proto.c b/src/template_func_proto.c index 140a5e0..f29c103 100644 --- a/src/template_func_proto.c +++ b/src/template_func_proto.c @@ -20,7 +20,7 @@ int get_github_release_notes_auto_tplfunc_entrypoint(void *frame, void *data_out int result = 0; char **output = (char **) data_out; struct tplfunc_frame *f = (struct tplfunc_frame *) frame; - char *api_token = getenv("STASIS_GITHUB_TOKEN"); + char *api_token = getenv("STASIS_GH_TOKEN"); if (!api_token) { api_token = getenv("GITHUB_TOKEN"); } |