Github Events To Feishu Bot Action
ActionsTags
(2)-
What is this for? Send Github events to Feishu Bot, but in the format that Feishu recognises.
-
作何用途?利用github action发送事件消息到飞书自定义机器人/机器人
In the bot setting, copy the webhook url and configure it to the action secrets
as FEISHU_BOT_WEBHOOK
.
在自定义机器人设置界面,拷贝webhook url并配置到github仓库的action secrets中,命
名为FEISHU_BOT_WEBHOOK
If you enable the signature verify in the bot setting, copy the signkey to
secrets too, name it as FEISHU_BOT_SIGNKEY
如果你启用了签名校验,那么请将签名密钥也拷贝到secrets中,命名
为FEISHU_BOT_SIGNKEY
custom the events you care
自定义你所关心的事件
name: feishu bot
on:
branch_protection_rule:
types: [created, deleted]
check_run:
types: [rerequested, completed]
check_suite:
types: [completed]
create:
delete:
deployment_status:
discussion:
types: [created, edited, answered]
discussion_comment:
types: [created, deleted]
fork:
gollum:
issues:
types: [opened, edited, milestoned, pinned, reopened]
issue_comment:
types: [created, deleted]
label:
types: [created, deleted]
merge_group:
types: [checks_requested]
milestone:
types: [opened, deleted]
page_build:
project:
types: [created, deleted, reopened]
project_card:
types: [created, deleted]
project_column:
types: [created, deleted]
public:
pull_request:
branches: ['main']
types: [opened, reopened]
pull_request_review:
types: [edited, dismissed, submitted]
pull_request_review_comment:
types: [created, edited, deleted]
pull_request_target:
types: [assigned, opened, synchronize, reopened]
push:
branches: ['main']
registry_package:
types: [published]
release:
types: [published]
status:
watch:
types: [started]
schedule:
- cron: '30 2 * * *'
jobs:
send-event:
name: Webhook
runs-on: ubuntu-latest
steps:
- uses: junka/feishu-bot-webhook-action@main
with:
webhook: ${{ secrets.FEISHU_BOT_WEBHOOK }}
signkey: ${{ secrets.FEISHU_BOT_SIGNKEY }}
As you can see that in the example workflow yaml file, you need the following input variables.
如上面例子展示的工作流的yaml文件所示,你需要关注以下输入变量。
webhook
: required, the webhook url for the custom bot. 必需,自定义机器人的 回调webhooksignkey
: optional, the sign key for the bot when you enable the signature verification. 可选,自定义机器人的签名密钥,当启用签名校验时需要
Please configure FEISHU_BOT_WEBHOOK
and FEISHU_BOT_SIGNKEY
in the repo,
Setting
-> Secrets and variables
-> Actions
-> New Repository secrets
请在仓库的设置中配置FEISHU_BOT_WEBHOOK
和 FEISHU_BOT_SIGNKEY
, 路径Setting
-> Secrets and variables
-> Actions
-> New Repository secrets
.
In the sample above schedule
event will post github trending to bot every day
at 2:30 UTC time. 上面例子中配置的schedule
事件会在每天UTC时间2:30发送github
tredning到机器人。
you can fork the action and modify as below你可以fork项目并依据以下步骤修改
- Create a card here https://open.feishu.cn/cardkit
- 在这里新建一个卡片
- replace the card template id and varibales in the code
- 替换代码中的卡片模版id和变量
"type": "template",
"data": {
"template_id": "AAqkeNyiypMLb",
"template_version_name": "1.0.6",
"template_variable": {
"repo": "${repo}",
"eventType": "${eventType}",
"themeColor": "${color}",
"auser": "${actor}",
"avatar": "${avatar}",
"status": "${status}",
"etitle": "${etitle}",
"detailurl": "${detailurl}"
}
}
}
This card is for event notification, there is another for github trending. You can modify that as you wish. 这个卡片是做事件通知的,也有一个做github trending的 卡片,你也可以安需要修改。
Github Events To Feishu Bot Action is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.