Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ti-community-infra/probot-commands-pro
A Probot extension that adds slash commands to GitHub.
https://github.com/ti-community-infra/probot-commands-pro
probot slash-commands
Last synced: 19 days ago
JSON representation
A Probot extension that adds slash commands to GitHub.
- Host: GitHub
- URL: https://github.com/ti-community-infra/probot-commands-pro
- Owner: ti-community-infra
- Created: 2020-08-25T08:00:49.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-07-05T07:34:25.000Z (over 3 years ago)
- Last Synced: 2024-04-23T17:33:37.868Z (7 months ago)
- Topics: probot, slash-commands
- Language: JavaScript
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Probot: Commands
[![GitHub Actions](https://github.com/tidb-community-bots/probot-commands-pro/workflows/Test/badge.svg?branch=master)](https://github.com/features/actions)
[![codecov](https://codecov.io/gh/tidb-community-bots/probot-commands-pro/branch/master/graph/badge.svg)](https://codecov.io/gh/tidb-community-bots/probot-commands-pro)
[![Probot](https://badgen.net/badge/built%20with/probot/orange?icon=dependabot&cache=86400)](https://probot.github.io/)
[![jest](https://facebook.github.io/jest/img/jest-badge.svg)](https://github.com/facebook/jest)
[![ISC License](https://badgen.net/badge/license/ISC/blue?cache=86400)](https://tidb-community-bots.isc-license.org)> A [Probot](https://github.com/probot/probot) extension that adds slash commands to GitHub.
For example, from a comment box someone could type:
![Slash commands in a comment box](https://user-images.githubusercontent.com/173/30231736-d752e7dc-94b1-11e7-84bf-d8475733d701.png)
A Probot app could then use this extension to listen for the `remind` slash command.
## Installation
```
$ npm install --save probot-commands-pro
```## Usage
```js
const commands = require('probot-commands-pro')module.exports = robot => {
// Type `/label foo, bar` in a comment box for an Issue or Pull Request
commands(robot, 'label', (context, command) => {
const labels = command.arguments.split(/, */);
return context.github.issues.addLabels(context.issue({labels}));
});
}
```## Thanks
Powered by [commands](https://github.com/probot/commands)