Skip to content

Instantly share code, notes, and snippets.

@mtsmfm
Last active August 29, 2015 14:16
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mtsmfm/c3e89257fbabeb2aaab5 to your computer and use it in GitHub Desktop.
Save mtsmfm/c3e89257fbabeb2aaab5 to your computer and use it in GitHub Desktop.
require 'active_support'
require 'active_support/core_ext/object/to_query'
require 'active_support/core_ext/string/strip'
params = {
title: '問題を一言で',
labels: %w(bug),
body: <<-EOS.strip_heredoc
## 出す前に確認しよう
- コードは最新?
- 重複した issue はない?
## 手順
スクショや gif 、再現可能なコードがあると嬉しい
## 問題
問題だと思われる事象の詳細
## 期待されるふるまい
## 備考
EOS
}
gh_project = 'hoge/fuga'
puts "https://github.com/#{gh_project}/issues/new?" + params.to_query
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment