run_for_team

in retrospective.rb [65:74]


  def run_for_team(team)
    if options.fetch('create', false)
      retrospective.create_issue(team: team, release: release('create', :current), dry_run: dry_run)
    elsif options.fetch('update', false)
      retrospective.update_issue(team: team, release: release('update', :previous), dry_run: dry_run)
    end

    0 
  end