This is an automated email from the ASF dual-hosted git repository.

rusackas pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 295975d16b chore(actions): Fix for Chromatic action using 
actions/checkout@v3 (#23759)
295975d16b is described below

commit 295975d16b123819ef4369a63a20845d478115cb
Author: Evan Rusackas <[email protected]>
AuthorDate: Thu Apr 20 21:47:52 2023 -0600

    chore(actions): Fix for Chromatic action using actions/checkout@v3 (#23759)
---
 .github/workflows/chromatic-master.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.github/workflows/chromatic-master.yml 
b/.github/workflows/chromatic-master.yml
index 67a9dfac69..11e07e6c5a 100644
--- a/.github/workflows/chromatic-master.yml
+++ b/.github/workflows/chromatic-master.yml
@@ -53,6 +53,8 @@ jobs:
     # Job steps
     steps:
       - uses: actions/checkout@v3
+        with:
+          fetch-depth: 0 # 👈 Required to retrieve git history
       - name: Install dependencies
         run: npm ci
         working-directory: superset-frontend

Reply via email to