From 7b4f16145b203886e281669e54cd0af2bcb4a1ff Mon Sep 17 00:00:00 2001 From: Ed Morley <501702+edmorley@users.noreply.github.com> Date: Wed, 5 Aug 2020 10:48:25 +0100 Subject: [PATCH] Add a configuration file for Git2Gus (#1034) This will allow for one-way sync of GitHub issues in this repository into our internal issues tracker, GUS. Issues are only synced when the specified GitHub label is added. In the future I may switch the chosen label to just be the standard `t: bug` type labels, but for now I'm choosing a separate label so that we have more control over what is synced. See: https://lwc-gus-bot.herokuapp.com/#getting-started @W-7918433@ --- .git2gus/config.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .git2gus/config.json diff --git a/.git2gus/config.json b/.git2gus/config.json new file mode 100644 index 0000000..f16398d --- /dev/null +++ b/.git2gus/config.json @@ -0,0 +1,6 @@ +{ + "productTag": "a1aB0000000MR0RIAW", + "issueTypeLabels": { "gus: story": "USER STORY", "gus: bug": "BUG P3" }, + "defaultBuild": "Heroku Unscheduled", + "statusWhenClosed": "CLOSED" +}