https://github.com/satoryu/typetalk-notify
An action for notifying any events like opening new issue on a github repository to Typetalk topic.
https://github.com/satoryu/typetalk-notify
github-actions github-actions-nodejs hacktoberfest notifications typetalk
Last synced: 2 months ago
JSON representation
An action for notifying any events like opening new issue on a github repository to Typetalk topic.
- Host: GitHub
- URL: https://github.com/satoryu/typetalk-notify
- Owner: satoryu
- License: mit
- Created: 2020-03-29T13:10:41.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-07-19T00:15:45.000Z (about 2 years ago)
- Last Synced: 2025-07-06T14:49:36.749Z (3 months ago)
- Topics: github-actions, github-actions-nodejs, hacktoberfest, notifications, typetalk
- Language: TypeScript
- Homepage:
- Size: 854 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Typetalk notify

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.
- [Authentication & Authorization | Typetalk Developer API | Nulab](https://developer.nulab.com/docs/typetalk/auth/#tttoken_create)
### `topic_id`
**required** Id of a topic to be notified.
### `message`
**required** message to be sent to the topic specified by `topic_id`.
## Example
```yaml
name: Release announceon:
release:
types: [published]jobs:
steps:
- uses: satoryu/typetalk-notify@v0.0.3
with:
token: ${{ secrets.TYPETALK_TOKEN }}
topic_id: 165952 # Replace your topic's id
message: "${{ github.repository }} ${{ github.ref }} has been released :tada: :white_flower:"
```