You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by le...@apache.org on 2022/09/23 07:33:26 UTC

[tvm] branch main updated: [EZ][Release] Update gather PRs Script (#12862)

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

leandron pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git


The following commit(s) were added to refs/heads/main by this push:
     new d80ce6b1ba [EZ][Release] Update gather PRs Script (#12862)
d80ce6b1ba is described below

commit d80ce6b1ba5439dbe0437be6e37121844f87a113
Author: AndrewZhaoLuo <an...@gmail.com>
AuthorDate: Fri Sep 23 00:33:19 2022 -0700

    [EZ][Release] Update gather PRs Script (#12862)
    
    Update internal path to account for directory structure
    change in TVM repository, with the introduction of `ci`
    directory.
---
 tests/scripts/release/gather_prs.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tests/scripts/release/gather_prs.py b/tests/scripts/release/gather_prs.py
index 0720a87d04..5fbfa2278f 100644
--- a/tests/scripts/release/gather_prs.py
+++ b/tests/scripts/release/gather_prs.py
@@ -25,11 +25,12 @@ import sys
 from typing import Callable, Dict, List, Any
 
 REPO_ROOT = Path(__file__).resolve().parent.parent.parent.parent
-sys.path.append(str(REPO_ROOT / "tests" / "scripts"))
+sys.path.append(str(REPO_ROOT / "ci" / "scripts"))
 
 from git_utils import git, GitHubRepo
 from github_tag_teams import tags_from_title
 
+
 GITHUB_TOKEN = os.environ["GITHUB_TOKEN"]