lane :get_issues_with_milestone do |options| title = options[:title] milestone_state = options[:milestone_state] issue_state = options[:issue_state] url = YOUR_REPO # e.g. "fastlane/fastlane" token = YOUR_GITHUB_API_TOKEN # Milestoneの取得 UI.message("Getting milestone on GitHub | Title: #{title}, State: #{milestone_state}") milestones_result = github_api( api_token: token, http_method: "GET", path:
