No description
Find a file
2020-02-29 14:08:06 +01:00
campaign Add command now stores the tickets 2020-02-29 13:40:39 +01:00
cmd Adds the capability of filtering grep by file 2020-02-29 14:08:06 +01:00
config Add init command 2020-02-29 00:49:55 +01:00
model Adds implementation for init command 2020-02-29 13:33:03 +01:00
vendor Add cobra root command 2020-02-28 23:54:14 +01:00
.gitignore Add command now stores the tickets 2020-02-29 13:40:39 +01:00
campaigner.go Add cobra root command 2020-02-28 23:54:14 +01:00
go.mod Add cobra root command 2020-02-28 23:54:14 +01:00
go.sum Add cobra root command 2020-02-28 23:54:14 +01:00
Makefile Adds vendor to phony targets 2020-02-29 01:21:29 +01:00
README.md Adds basic usage to the readme 2020-02-29 01:22:11 +01:00

Campaigner

Command line tool to create and manage community campaigns.

Usage

$ campaigner --help
Create and manage Open Source campaigns

Usage:
  campaigner [command]

Available Commands:
  add         Adds tickets to the campaign
  help        Help about any command
  init        Creates a new campaign in the current directory
  token       Subcommands related to tokens

Flags:
  -h, --help   help for campaigner

Use "campaigner [command] --help" for more information about a command.

Application flow

  1. Run campaigner set-token to set the tokens for jira/github.
  2. Run campaigner create to create a new community campaign.
  3. Run campaigner add to add new tickets based either on a grep/ag command or a govet check.
  4. Run campaigner state to see the status of each one of the tickets. The tickets can be in an unpublished, jira, github and completed state.
  5. Run campaigner template to edit the ticket template.
  6. Run campaigner publish to create the tickets in jira based on the template.
  7. Possible next step to publish the tickets from jira to github.