From 2a1a5752f2fe7d6acbfeefdecd04e1e155043c33 Mon Sep 17 00:00:00 2001 From: Zachary Date: Mon, 12 Sep 2022 08:54:32 -0500 Subject: [PATCH] populate html_url on scheduled runs --- dist/index.js | 1 + src/index.js | 1 + 2 files changed, 2 insertions(+) diff --git a/dist/index.js b/dist/index.js index 7d3c951..998088f 100644 --- a/dist/index.js +++ b/dist/index.js @@ -71309,6 +71309,7 @@ octokit .then((repo) => { eventJSON.repository.full_name = repo.data.full_name; eventJSON.repository.node_id = repo.data.node_id; + eventJSON.repository.html_url = repo.data.html_url; }) .catch((err) => { core.error( diff --git a/src/index.js b/src/index.js index d3c79d4..b0c3ab9 100755 --- a/src/index.js +++ b/src/index.js @@ -120,6 +120,7 @@ octokit .then((repo) => { eventJSON.repository.full_name = repo.data.full_name; eventJSON.repository.node_id = repo.data.node_id; + eventJSON.repository.html_url = repo.data.html_url; }) .catch((err) => { core.error(