You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by dr...@apache.org on 2022/09/16 20:30:06 UTC

[tvm] branch main updated (5d0a16749c -> e037ae4992)

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

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


    from 5d0a16749c [ci] Fix docs push (#12810)
     add e037ae4992 [ci] Add bot to post welcome comment (#12695)

No new revisions were added by this update.

Summary of changes:
 .github/PULL_REQUEST_TEMPLATE.md                   |   1 -
 .github/workflows/docs_bot.yml                     |  18 --
 .../{tag_teams.yml => pr_comment_bot.yml}          |  39 +--
 .github/workflows/tag_teams.yml                    |   7 -
 .github/workflows/tests_bot.yml                    |  21 --
 {apps/uma/_template => ci/scripts}/__init__.py     |   7 +-
 ci/scripts/git_utils.py                            |  60 ++++-
 ci/scripts/github_commenter.py                     | 132 +++++++++++
 ci/scripts/github_docs_comment.py                  |  83 +------
 ci/scripts/github_pr_comment.py                    | 141 +++++++++++
 ci/scripts/github_skipped_tests_comment.py         | 140 ++++-------
 ci/scripts/github_tag_teams.py                     |  85 +++++--
 tests/python/ci/test_ci.py                         | 262 ++++++++++++++++++---
 13 files changed, 692 insertions(+), 304 deletions(-)
 delete mode 100644 .github/PULL_REQUEST_TEMPLATE.md
 delete mode 100644 .github/workflows/docs_bot.yml
 copy .github/workflows/{tag_teams.yml => pr_comment_bot.yml} (55%)
 delete mode 100644 .github/workflows/tests_bot.yml
 copy {apps/uma/_template => ci/scripts}/__init__.py (84%)
 create mode 100644 ci/scripts/github_commenter.py
 create mode 100755 ci/scripts/github_pr_comment.py