We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent febd6be commit e096295Copy full SHA for e096295
1 file changed
tools/github/listen
@@ -21,6 +21,11 @@ const WEBHOOK_GIT_HEAD_COMMIT_AUTHOR_USERNAME = "FlutterFlowEng";
21
22
webhooks.onAny(({ id, name, payload }) => {
23
// console.log(name, "event received", id, payload);
24
+
25
+ // console.log("Checking if commit is from FlutterFlow...");
26
+ // console.log(WEBHOOK_NAME + " === " + name);
27
+ // console.log(WEBHOOK_GIT_REF + " === " + payload.ref);
28
+ // console.log(WEBHOOK_GIT_HEAD_COMMIT_AUTHOR_USERNAME + " === " + payload.head_commit.author.username);
29
30
if (name === WEBHOOK_NAME) {
31
if (payload.ref === WEBHOOK_GIT_REF) {
0 commit comments