• Stars
    star
    4
  • Rank 3,287,696 (Top 66 %)
  • Language
    TypeScript
  • License
    MIT License
  • Created over 4 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

An action for notifying any events like opening new issue on a github repository to Typetalk topic.

Typetalk notify

CI

This action is for notifying any events like opening new issue on a github repository to Typetalk topic.

Inputs

token

required API token for Typetalk API. The following document describes a way to get a token.

topic_id

required Id of a topic to be notified.

message

required message to be sent to the topic specified by topic_id.

Example

name: Release announce

on:
  release:
    types: [published]

jobs:
  steps:
    - uses: satoryu/[email protected]
      with:
        token: ${{ secrets.TYPETALK_TOKEN }}
        topic_id: 165952  # Replace your topic's id
        message: "${{ github.repository }} ${{ github.ref }} has been released :tada: :white_flower:"