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

warren pushed a change to branch feat-plugin-gitea
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git


    from ef013b89 fix: golangci-lint error (#3032)
     new 1a0ac51f feat: new plugin for gitea
     new 3b6c1944 feat: new plugin for gitea

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 plugins/{gitee => gitea}/README.md                 |   4 +-
 plugins/{github => gitea}/api/blueprint.go         |  25 +--
 plugins/{gitee => gitea}/api/connection.go         |  80 +++++-----
 plugins/{ae => gitea}/api/init.go                  |   0
 plugins/{gitee => gitea}/api/swagger.go            |  12 +-
 plugins/{bitbucket/bitbucket.go => gitea/gitea.go} |  17 +-
 plugins/gitea/impl/impl.go                         | 173 +++++++++++++++++++++
 .../models/pr_issue.go => gitea/models/account.go} |  23 ++-
 plugins/{gitee => gitea}/models/commit.go          |   6 +-
 plugins/{gitee => gitea}/models/commit_stats.go    |   6 +-
 plugins/{azure => gitea}/models/connection.go      |  25 +--
 plugins/{github => gitea}/models/issue.go          |  25 ++-
 plugins/{gitee => gitea}/models/issue_comment.go   |  19 ++-
 plugins/{gitlab => gitea}/models/issue_label.go    |  11 +-
 .../migrationscripts/20220830_add_init_tables.go}  |  51 +++++-
 .../models/migrationscripts/archived/account.go    |  20 ++-
 .../models/migrationscripts/archived/commit.go     |   6 +-
 .../migrationscripts/archived}/commit_stats.go     |   8 +-
 .../migrationscripts/archived}/connection.go       |  12 +-
 .../models/migrationscripts/archived}/issue.go     |  27 ++--
 .../migrationscripts/archived}/issue_comment.go    |  21 +--
 .../migrationscripts/archived}/issue_label.go      |  13 +-
 .../models/migrationscripts/archived}/repo.go      |  15 +-
 .../migrationscripts/archived}/repo_commit.go      |   8 +-
 .../models/migrationscripts/archived}/reviewer.go  |  12 +-
 .../models/migrationscripts/register.go            |   0
 plugins/{gitee => gitea}/models/repo.go            |  13 +-
 plugins/{gitee => gitea}/models/repo_commit.go     |   6 +-
 plugins/{gitee => gitea}/models/reviewer.go        |  10 +-
 .../{gitee => gitea}/tasks/account_convertor.go    |  18 +--
 .../tasks/client.go => gitea/tasks/api_client.go}  |  25 ++-
 plugins/{gitee => gitea}/tasks/commit_collector.go |  28 ++--
 plugins/{gitee => gitea}/tasks/commit_convertor.go |  44 +++---
 plugins/{gitee => gitea}/tasks/commit_extractor.go |  44 +++---
 .../tasks/commit_stats_collector.go                |  44 ++----
 .../tasks/commit_stats_extractor.go                |   9 +-
 plugins/{gitee => gitea}/tasks/issue_collector.go  |  27 ++--
 .../tasks/issue_comment_collector.go}              |  58 +++----
 .../tasks/issue_comment_convertor.go               |  32 ++--
 .../tasks/issue_comment_extractor.go               |  63 +++-----
 plugins/{gitee => gitea}/tasks/issue_convertor.go  |  33 ++--
 plugins/{gitee => gitea}/tasks/issue_extractor.go  | 134 +++-------------
 .../tasks/issue_label_convertor.go                 |  18 +--
 plugins/{gitee => gitea}/tasks/repo_collector.go   |  12 +-
 plugins/{gitee => gitea}/tasks/repo_convertor.go   |  24 +--
 plugins/{gitee => gitea}/tasks/repo_extractor.go   |  36 ++---
 plugins/gitea/tasks/shared.go                      | 101 ++++++++++++
 plugins/{azure => gitea}/tasks/task_data.go        |  45 +++---
 48 files changed, 824 insertions(+), 619 deletions(-)
 copy plugins/{gitee => gitea}/README.md (78%)
 copy plugins/{github => gitea}/api/blueprint.go (86%)
 copy plugins/{gitee => gitea}/api/connection.go (67%)
 copy plugins/{ae => gitea}/api/init.go (100%)
 copy plugins/{gitee => gitea}/api/swagger.go (88%)
 copy plugins/{bitbucket/bitbucket.go => gitea/gitea.go} (70%)
 create mode 100644 plugins/gitea/impl/impl.go
 copy plugins/{github/models/pr_issue.go => gitea/models/account.go} (55%)
 copy plugins/{gitee => gitea}/models/commit.go (94%)
 copy plugins/{gitee => gitea}/models/commit_stats.go (91%)
 copy plugins/{azure => gitea}/models/connection.go (68%)
 copy plugins/{github => gitea}/models/issue.go (73%)
 copy plugins/{gitee => gitea}/models/issue_comment.go (69%)
 copy plugins/{gitlab => gitea}/models/issue_label.go (78%)
 copy plugins/{azure/models/migrationscripts/20220825_add_init_tables.go => 
gitea/models/migrationscripts/20220830_add_init_tables.go} (50%)
 copy models/domainlayer/crossdomain/issue_repo_commits.go => 
plugins/gitea/models/migrationscripts/archived/account.go (62%)
 copy plugins/{gitee => gitea}/models/migrationscripts/archived/commit.go (94%)
 copy plugins/{gitee/models => 
gitea/models/migrationscripts/archived}/commit_stats.go (89%)
 copy plugins/{gitee/models => 
gitea/models/migrationscripts/archived}/connection.go (92%)
 copy plugins/{github/models => 
gitea/models/migrationscripts/archived}/issue.go (72%)
 copy plugins/{gitee/models => 
gitea/models/migrationscripts/archived}/issue_comment.go (68%)
 copy plugins/{gitlab/models => 
gitea/models/migrationscripts/archived}/issue_label.go (77%)
 copy plugins/{gitee/models => gitea/models/migrationscripts/archived}/repo.go 
(80%)
 copy plugins/{gitee/models => 
gitea/models/migrationscripts/archived}/repo_commit.go (88%)
 copy plugins/{gitee/models => 
gitea/models/migrationscripts/archived}/reviewer.go (81%)
 copy plugins/{ae => gitea}/models/migrationscripts/register.go (100%)
 copy plugins/{gitee => gitea}/models/repo.go (81%)
 copy plugins/{gitee => gitea}/models/repo_commit.go (90%)
 copy plugins/{gitee => gitea}/models/reviewer.go (83%)
 copy plugins/{gitee => gitea}/tasks/account_convertor.go (80%)
 copy plugins/{jenkins/tasks/client.go => gitea/tasks/api_client.go} (66%)
 copy plugins/{gitee => gitea}/tasks/commit_collector.go (72%)
 copy plugins/{gitee => gitea}/tasks/commit_convertor.go (70%)
 copy plugins/{gitee => gitea}/tasks/commit_extractor.go (73%)
 copy plugins/{gitee => gitea}/tasks/commit_stats_collector.go (58%)
 copy plugins/{gitee => gitea}/tasks/commit_stats_extractor.go (94%)
 copy plugins/{gitee => gitea}/tasks/issue_collector.go (79%)
 copy plugins/{gitee/tasks/issue_collector.go => 
gitea/tasks/issue_comment_collector.go} (59%)
 copy plugins/{gitee => gitea}/tasks/issue_comment_convertor.go (72%)
 copy plugins/{gitee => gitea}/tasks/issue_comment_extractor.go (59%)
 copy plugins/{gitee => gitea}/tasks/issue_convertor.go (78%)
 copy plugins/{gitee => gitea}/tasks/issue_extractor.go (50%)
 copy plugins/{gitee => gitea}/tasks/issue_label_convertor.go (80%)
 copy plugins/{gitee => gitea}/tasks/repo_collector.go (88%)
 copy plugins/{gitee => gitea}/tasks/repo_convertor.go (82%)
 copy plugins/{gitee => gitea}/tasks/repo_extractor.go (74%)
 create mode 100644 plugins/gitea/tasks/shared.go
 copy plugins/{azure => gitea}/tasks/task_data.go (64%)

Reply via email to