https://github.com/doist/twist-post-action
GitHub action that posts a message to Twist thread.
https://github.com/doist/twist-post-action
Last synced: 4 months ago
JSON representation
GitHub action that posts a message to Twist thread.
- Host: GitHub
- URL: https://github.com/doist/twist-post-action
- Owner: Doist
- Created: 2020-08-21T11:09:24.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2025-02-28T16:10:46.000Z (over 1 year ago)
- Last Synced: 2025-02-28T20:46:46.189Z (over 1 year ago)
- Size: 5.86 KB
- Stars: 1
- Watchers: 12
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GitHub Action - Twist Post
GitHub action that posts a message to Twist thread through a thread integration.
## Example
```yml
on:
push:
branches: [ dev ]
jobs:
notify:
runs-on: ubuntu-latest
steps:
uses: Doist/twist-post-action@master
with:
message: "Dev branch has been updated"
install_id: ${{ secrets.TWIST_INTEGRATION_INSTALL_ID }}
install_token: ${{ secrets.TWIST_INTEGRATION_INSTALL_TOKEN }}
```