Skip to content

Commit e096295

Browse files
authored
Update listen
1 parent febd6be commit e096295

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

tools/github/listen

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ const WEBHOOK_GIT_HEAD_COMMIT_AUTHOR_USERNAME = "FlutterFlowEng";
2121

2222
webhooks.onAny(({ id, name, payload }) => {
2323
// 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);
2429

2530
if (name === WEBHOOK_NAME) {
2631
if (payload.ref === WEBHOOK_GIT_REF) {

0 commit comments

Comments
 (0)