Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

emoji-to-issue

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

emoji-to-issue

the fastest way to create github issues with slack emoji reactions

  • 1.0.1
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

emoji-to-issue

The fastest way to create GitHub issues on your phone.

Add emoji reactions to messages on Slack and it creates an GitHub issue for you.

If you don't make it an issue, you'll forget it. Don't miss problems of your product. This module helps you to accelerate product development process, especially when you're dog-fooding.

usage

Add an emoji reaction:

Then, the issue is made:

setup

In your package.json:

"dependencies": {
  "emoji-to-issue": "uiur/emoji-to-issue#master",

Then:

npm install

configure slack emoji

https://slack.com/customize/emoji

Add custom emoji with names such as :issue: or :issue-assign-uiur:. Use alias if you want short one like: :uiu: -> :issue-assign-uiur:

This emoji generator is useful: https://emoji-gen.ninja/

write some code

Following api tokens are required:

Set those tokens via environment variables or pass it to the arguments.

const { ReactionHandler } = require('emoji-to-issue')

handler = new ReactionHandler({
  issueRepo: 'hello-ai/sandbox', // required
  reactionName: ['bug'], // default: 'issue', 'issue-assign_:assignee' etc.
  slackToken: 'bot token', // default: process.env.SLACK_TOKEN
  githubToken: 'github token' // default: process.env.GITHUB_TOKEN
})

// event = {
//   type: 'reaction_added',
//   user: 'UB9T3UXU0',
//   item: { type: 'message', channel: 'CGU971U2F', ts: '1565583510.003900' },
//   reaction: 'issue',
//   item_user: 'UB9T3UXU0',
//   event_ts: '1565583513.004000'
// }

if (handler.match(event)) {
  handler
    .handle(event)
    .then(() => {
      console.log('ok')
    })
    .catch(err => {
      console.error(err)
    })
}

FAQs

Package last updated on 22 Jan 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc