No description
Find a file
2020-03-07 12:11:52 +01:00
campaign Add command now stores the tickets 2020-02-29 13:40:39 +01:00
cmd Add output info when adding tickets 2020-03-07 12:04:24 +01:00
config Add init command 2020-02-29 00:49:55 +01:00
jira Adds first version of status 2020-03-06 19:54:52 +01:00
model Adds first version of status 2020-03-06 19:54:52 +01:00
vendor Replace direct usage of the API with go-jira 2020-03-04 22:13:55 +01:00
.gitignore Ignore tickets.csv 2020-03-07 11:12:09 +01:00
campaigner.go Add cobra root command 2020-02-28 23:54:14 +01:00
go.mod Replace direct usage of the API with go-jira 2020-03-04 22:13:55 +01:00
go.sum Replace direct usage of the API with go-jira 2020-03-04 22:13:55 +01:00
Makefile Adds vendor to phony targets 2020-02-29 01:21:29 +01:00
README.md Updates the README file 2020-03-07 12:11:52 +01:00

Campaigner

Command line tool to create and manage community campaigns. campaigner takes care of all the campaign lifecycle, starting with getting information to generate the tickets, then publishing them in jira and github and finally tracking their status, the campaign progress and generating reports.

  • campaigner init generates the campaign file, linking it to the jira instance and github repository and to the epic issue that will host each campaign ticket.
  • campaigner add parses information from different sources and uses it to generate tickets for the campaign.
  • campaigner publish builds the tickets information and publishes it both to jira and github.
  • campaigner sync downloads updated information of the campaign progress.
  • campaigner status shows the current campaign data and progression.
  • campaigner report generates reports from the campaign data.

Usage

$ campaigner --help
Create and manage Open Source campaigns

Usage:
  campaigner [command]

Available Commands:
  add         Adds tickets to the campaign from the output of grep/ag/govet
  filter      Interactively filters the current ticket list
  help        Help about any command
  init        Creates a new campaign in the current directory
  publish     Publishes the campaign tickets in different providers
  standalone  Standalone fire-and-forget commands
  status      Prints the current status of the campaign
  sync        Synchronizes the status of the tickets with remote providers
  token       Subcommands related to tokens

Flags:
  -h, --help   help for campaigner

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