From 7444c8d39face7d032cb8155a2a17f518cfc9bd9 Mon Sep 17 00:00:00 2001
From: Alexander Polyankin <alexander.polyankin@metabase.com>
Date: Thu, 14 Oct 2021 15:38:49 +0300
Subject: [PATCH] Add codenotify (#18390)

---
 .github/workflows/codenotify.yml         | 17 +++++++++++++++++
 frontend/src/metabase/account/CODENOTIFY |  3 +++
 2 files changed, 20 insertions(+)
 create mode 100644 .github/workflows/codenotify.yml
 create mode 100644 frontend/src/metabase/account/CODENOTIFY

diff --git a/.github/workflows/codenotify.yml b/.github/workflows/codenotify.yml
new file mode 100644
index 00000000000..16103905b83
--- /dev/null
+++ b/.github/workflows/codenotify.yml
@@ -0,0 +1,17 @@
+name: Codenotify
+
+on:
+  pull_request:
+    types: [opened, synchronize, ready_for_review]
+
+jobs:
+  codenotify:
+    runs-on: ubuntu-latest
+    name: Codenotify
+    steps:
+      - uses: actions/checkout@v2
+        with:
+          ref: ${{ github.event.pull_request.head.sha }}
+      - uses: sourcegraph/codenotify@v0.4
+        env:
+          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
diff --git a/frontend/src/metabase/account/CODENOTIFY b/frontend/src/metabase/account/CODENOTIFY
new file mode 100644
index 00000000000..bbeaa00c2a1
--- /dev/null
+++ b/frontend/src/metabase/account/CODENOTIFY
@@ -0,0 +1,3 @@
+# See https://github.com/sourcegraph/codenotify for documentation.
+
+**/* @ranquild
-- 
GitLab