-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #94 from coddingtonbear/add_tags_option
Add tags option
- Loading branch information
Showing
4 changed files
with
73 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,21 @@ Create a ``~/.bugwarriorrc`` file with the following contents. | |
# Use "password = @oracle:eval:<command>" to use the output of <command> as the password. | ||
# Note that using one of these strategies is in general more secure | ||
# than storing a password in plain text. | ||
# | ||
# COMMON SERVICE PROPERTIES: | ||
# Services all implement the following options: | ||
# | ||
# Space-separated list of tags to add to all created issues: | ||
# > add_tags = tag1 tag2 | ||
# A priority to set incoming tasks to by default ('H', 'M', or 'L') | ||
# > default_priority = M | ||
# A template to use for generating the task description (see service details | ||
# for more information about what fields are available) | ||
# > description_template = {{githubtitle}} | ||
# Only create tasks for issues found assigned to the specified username | ||
# > only_if_assigned = myusername | ||
# Above, but also create tasks for issues that are unassigned | ||
# > also_unassigned = True | ||
|
||
# General stuff. | ||
[general] | ||
|
@@ -96,6 +111,7 @@ Create a ``~/.bugwarriorrc`` file with the following contents. | |
service = github | ||
github.username = ralphbean | ||
default_priority = H | ||
add_tags = open_source | ||
|
||
# You can override how an issue's description is created by entering | ||
# a one-line Jinja template like the below; in addition to the default | ||
|
@@ -128,6 +144,7 @@ Create a ``~/.bugwarriorrc`` file with the following contents. | |
bitbucket.username = ralphbean | ||
bitbucket.password = mypassword | ||
default_priority = M | ||
add_tags = open_source | ||
|
||
# You can override how an issue's description is created by entering | ||
# a one-line Jinja template like the below; in addition to the default | ||
|
@@ -144,7 +161,7 @@ Create a ``~/.bugwarriorrc`` file with the following contents. | |
[paj_bitbucket] | ||
service = bitbucket | ||
bitbucket.username = paj | ||
bitbucket.only_if_assigned = ralphbean | ||
only_if_assigned = ralphbean | ||
default_priority = L | ||
|
||
# Here's an example of a trac target. Scrape every ticket and only include them | ||
|
@@ -161,6 +178,7 @@ Create a ``~/.bugwarriorrc`` file with the following contents. | |
only_if_assigned = ralph | ||
also_unassigned = True | ||
default_priority = H | ||
add_tags = work | ||
|
||
# You can override how an issue's description is created by entering | ||
# a one-line Jinja template like the below; in addition to the default | ||
|
@@ -182,6 +200,7 @@ Create a ``~/.bugwarriorrc`` file with the following contents. | |
bugzilla.base_uri = bugzilla.redhat.com | ||
bugzilla.username = [email protected] | ||
bugzilla.password = OMG_LULZ | ||
add_tags = mozilla | ||
|
||
# You can override how an issue's description is created by entering | ||
# a one-line Jinja template like the below; in addition to the default | ||
|
@@ -201,6 +220,7 @@ Create a ``~/.bugwarriorrc`` file with the following contents. | |
megaplan.project_name = example | ||
|
||
default_priority = H | ||
add_tags = megaplan important | ||
|
||
# You can override how an issue's description is created by entering | ||
# a one-line Jinja template like the below; in addition to the default | ||
|
@@ -227,6 +247,7 @@ Create a ``~/.bugwarriorrc`` file with the following contents. | |
# 4 and 5(the default). You can find your particular version in the footer at | ||
# the dashboard. | ||
jira.version = 5 | ||
add_tags = enterprisey work | ||
|
||
# You can override how an issue's description is created by entering | ||
# a one-line Jinja template like the below; in addition to the default | ||
|
@@ -245,6 +266,7 @@ Create a ``~/.bugwarriorrc`` file with the following contents. | |
teamlab.login = alice | ||
teamlab.password = secret | ||
teamlab.project_name = example_teamlab | ||
add_tags = whatever | ||
|
||
# You can override how an issue's description is created by entering | ||
# a one-line Jinja template like the below; in addition to the default | ||
|
@@ -263,6 +285,7 @@ Create a ``~/.bugwarriorrc`` file with the following contents. | |
redmine.key = c0c4c014cafebabe | ||
redmine.user_id = 7 | ||
redmine.project_name = redmine | ||
add_tags = chiliproject | ||
|
||
# You can override how an issue's description is created by entering | ||
# a one-line Jinja template like the below; in addition to the default | ||
|
@@ -293,6 +316,7 @@ Create a ``~/.bugwarriorrc`` file with the following contents. | |
activecollab3.url = https://ac.example.org/api.php | ||
activecollab3.key = your-api-key | ||
activecollab3.user_id = 15 | ||
add_tags = php | ||
|
||
# You can override how an issue's description is created by entering | ||
# a one-line Jinja template like the below; in addition to the default | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters