https://github.com/lukejacksonn/chattery
A GitHub action that creates chatrooms for pull requests
https://github.com/lukejacksonn/chattery
chatroom github-action pull-request review webrtc
Last synced: 3 months ago
JSON representation
A GitHub action that creates chatrooms for pull requests
- Host: GitHub
- URL: https://github.com/lukejacksonn/chattery
- Owner: lukejacksonn
- License: mit
- Created: 2019-10-08T11:35:03.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-08T21:13:44.000Z (about 6 years ago)
- Last Synced: 2025-04-10T08:05:45.475Z (6 months ago)
- Topics: chatroom, github-action, pull-request, review, webrtc
- Language: Ruby
- Homepage: https://github.com/marketplace/actions/chattery
- Size: 7.81 KB
- Stars: 30
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Chattery
> A GitHub action that creates chatrooms for pull requests
This action takes advantage of [talky.io](https://talky.io) to generate on demand chatrooms with video, audio and screen sharing support. This makes it easier for distributed teams to collaborate _face-to-face_ in real time rather than waiting on comments or having to schedule in person code reviews.

## Features
- 💻 Audio, video, text and screen sharing capable chatrooms
- 🔐 Peer-to-peer WebRTC connection between clients
- 📦 No plugins or browser extensions required
- 🛒 Install from the GitHub Marketplace
- 💸 Unlimited chat rooms for free## Usage
- Requires the `GITHUB_TOKEN` secret.
### Sample workflow
```yml
name: PR
on: pull_request
jobs:
chattery:
name: chattery
runs-on: ubuntu-latest
steps:
- name: post comment
uses: lukejacksonn/chattery@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```