Skip to content

Rollingegg/feishu-robot-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

feishu-robot-action status

GitHub Actions for Feishu Robot

How do I use a robot in a group chat?

✨ Usage

option required description
uuid true feishu robot webhook url uuid
secret false webhook authentication secret
version false api version of webhook, default 2
text false text content
json false raw message body

✨ Example

Simple Text

uses: Rollingegg/feishu-robot-action
with:
  uuid: 954e40d7-****-4111-****-649b5e0ba5f9
  text: hello github actions

Raw Message(JSON)

uses: Rollingegg/feishu-robot-action
with:
  uuid: 954e40d7-****-4111-****-649b5e0ba5f9
  json: |
    {"msg_type":"text","content":{"text":"test data from test runs"}}

With Secret(Optional)

uses: Rollingegg/feishu-robot-action
with:
  uuid: 954e40d7-****-4111-****-649b5e0ba5f9
  secret: UHbDROd****UZyvTyvwafe
  json: |
    {"msg_type":"text","content":{"text":"test data from test runs"}}

Support API v1(Optional)

uses: Rollingegg/feishu-robot-action
with:
  uuid: 9b88071886****669d3771dab2018ccc
  version: 1
  text: hello github actions