This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch chore/sync-info
in repository https://gitbox.apache.org/repos/asf/incubator-answer-plugins.git
discard 7077188 chore: Sync Plugin Info
add 464951c feat: add support for Lark notifications
add 61cb6c4 docs: add permission set to bot tutorial
add 507dd03 perf: remove type conversion
add 82497c4 fix: get plugin info from i18n
add 0fe7ba7 chore(plugins): upgrade answer version
add 33da28f chore(plugins): upgrade plugins version
add 4817936 chore: Sync Plugin Info
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (7077188)
\
N -- N -- N refs/heads/chore/sync-info (4817936)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
cache-redis/go.mod | 2 +-
cache-redis/go.sum | 4 +-
cache-redis/info.yaml | 2 +-
captcha-basic/go.mod | 2 +-
captcha-basic/go.sum | 4 +-
captcha-basic/info.yaml | 2 +-
captcha-basic/package.json | 2 +-
captcha-google-v2/go.mod | 2 +-
captcha-google-v2/go.sum | 4 +-
captcha-google-v2/info.yaml | 2 +-
captcha-google-v2/package.json | 2 +-
cdn-aliyun/info.yaml | 2 +-
cdn-s3/info.yaml | 2 +-
connector-apache/go.mod | 2 +-
connector-apache/go.sum | 4 +-
connector-apache/info.yaml | 2 +-
connector-basic/go.mod | 2 +-
connector-basic/go.sum | 4 +-
connector-basic/info.yaml | 2 +-
connector-dingtalk/go.mod | 2 +-
connector-dingtalk/go.sum | 4 +-
connector-dingtalk/info.yaml | 2 +-
connector-github/go.mod | 2 +-
connector-github/go.sum | 4 +-
connector-github/info.yaml | 2 +-
connector-google/go.mod | 2 +-
connector-google/go.sum | 4 +-
connector-google/info.yaml | 2 +-
editor-chart/go.mod | 2 +-
editor-chart/go.sum | 4 +-
editor-chart/info.yaml | 2 +-
editor-chart/package.json | 2 +-
editor-formula/go.mod | 2 +-
editor-formula/go.sum | 4 +-
editor-formula/info.yaml | 2 +-
editor-formula/package.json | 2 +-
embed-basic/go.mod | 2 +-
embed-basic/go.sum | 4 +-
embed-basic/info.yaml | 2 +-
embed-basic/package.json | 2 +-
notification-lark/README.md | 51 ++++
notification-lark/README_CN.md | 50 ++++
notification-lark/config.go | 190 ++++++++++++
notification-lark/docs/1.png | Bin 0 -> 385099 bytes
notification-lark/docs/2.png | Bin 0 -> 453527 bytes
notification-lark/docs/3.png | Bin 0 -> 351335 bytes
notification-lark/docs/4.png | Bin 0 -> 364168 bytes
notification-lark/go.mod | 51 ++++
{notification-slack => notification-lark}/go.sum | 171 ++++++-----
notification-lark/i18n/en_US.yaml | 104 +++++++
notification-lark/i18n/translation.go | 61 ++++
notification-lark/i18n/zh_CN.yaml | 104 +++++++
{cdn-s3 => notification-lark}/info.yaml | 8 +-
notification-lark/lark_card.go | 268 +++++++++++++++++
notification-lark/lark_card_test.go | 178 +++++++++++
notification-lark/notification.go | 328 +++++++++++++++++++++
.../user_config.go | 92 +++---
.../es_log.go => notification-lark/utils.go | 44 +--
util/util.go => notification-lark/utils_test.go | 35 +--
notification-slack/go.mod | 2 +-
notification-slack/go.sum | 4 +-
notification-slack/info.yaml | 2 +-
reviewer-akismet/go.mod | 3 +-
reviewer-akismet/go.sum | 9 +-
reviewer-akismet/info.yaml | 2 +-
reviewer-basic/go.mod | 2 +-
reviewer-basic/go.sum | 4 +-
reviewer-basic/info.yaml | 2 +-
search-algolia/go.mod | 2 +-
search-algolia/go.sum | 4 +-
search-algolia/info.yaml | 2 +-
search-elasticsearch/go.mod | 2 +-
search-elasticsearch/go.sum | 4 +-
search-elasticsearch/info.yaml | 2 +-
search-meilisearch/go.mod | 2 +-
search-meilisearch/go.sum | 4 +-
search-meilisearch/info.yaml | 2 +-
storage-aliyunoss/go.mod | 2 +-
storage-aliyunoss/go.sum | 4 +-
storage-aliyunoss/info.yaml | 2 +-
storage-s3/go.mod | 2 +-
storage-s3/go.sum | 4 +-
storage-s3/info.yaml | 2 +-
user-center-wecom/go.mod | 2 +-
user-center-wecom/go.sum | 4 +-
user-center-wecom/info.yaml | 2 +-
86 files changed, 1656 insertions(+), 259 deletions(-)
create mode 100644 notification-lark/README.md
create mode 100644 notification-lark/README_CN.md
create mode 100644 notification-lark/config.go
create mode 100644 notification-lark/docs/1.png
create mode 100644 notification-lark/docs/2.png
create mode 100644 notification-lark/docs/3.png
create mode 100644 notification-lark/docs/4.png
create mode 100644 notification-lark/go.mod
copy {notification-slack => notification-lark}/go.sum (50%)
create mode 100644 notification-lark/i18n/en_US.yaml
create mode 100644 notification-lark/i18n/translation.go
create mode 100644 notification-lark/i18n/zh_CN.yaml
copy {cdn-s3 => notification-lark}/info.yaml (84%)
create mode 100644 notification-lark/lark_card.go
create mode 100644 notification-lark/lark_card_test.go
create mode 100644 notification-lark/notification.go
copy {notification-slack => notification-lark}/user_config.go (54%)
copy search-elasticsearch/es_log.go => notification-lark/utils.go (54%)
copy util/util.go => notification-lark/utils_test.go (64%)