You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by dp...@apache.org on 2024/02/07 17:38:51 UTC

(superset) branch master updated: fix(ci): fix action script v7 breaking changes v3 (#27042)

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

dpgaspar 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 c77fc7dbaf fix(ci): fix action script v7 breaking changes v3 (#27042)
c77fc7dbaf is described below

commit c77fc7dbafc8ded946bc0738a49d9a1e245ec435
Author: Daniel Vaz Gaspar <da...@gmail.com>
AuthorDate: Wed Feb 7 17:38:45 2024 +0000

    fix(ci): fix action script v7 breaking changes v3 (#27042)
---
 .github/workflows/check_db_migration_confict.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/check_db_migration_confict.yml b/.github/workflows/check_db_migration_confict.yml
index 5a5e25e796..637252ab3b 100644
--- a/.github/workflows/check_db_migration_confict.yml
+++ b/.github/workflows/check_db_migration_confict.yml
@@ -42,7 +42,7 @@ jobs:
               sort: 'updated',
               per_page: 100,
             });
-            const pulls = await github.rest.paginate(opts);
+            const pulls = await github.paginate(opts);
             if (pulls.length > 0) {
               console.log(`Found ${pulls.length} open PRs for base branch "${currentBranch}"`)
             }
@@ -53,7 +53,7 @@ jobs:
                 repo: context.repo.repo,
                 pull_number: pull.number,
               });
-              const files = await github.rest.paginate(listFilesOpts);
+              const files = await github.paginate(listFilesOpts);
               if (
                 files.some(x => x.contents_url.includes('/contents/superset/migrations'))
               ) {