Skip to content

Instantly share code, notes, and snippets.

@iorionda
Forked from mtsmfm/gh_issue.rb
Last active August 29, 2015 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iorionda/814e1896e8148bc04fd3 to your computer and use it in GitHub Desktop.
Save iorionda/814e1896e8148bc04fd3 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