summaryrefslogtreecommitdiff
path: root/.expeditor
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-07-30 09:07:15 -0700
committerTim Smith <tsmith@chef.io>2018-07-30 09:07:51 -0700
commitd1598c6ebfa5679dd2c87f14f8046e8b4c51bc33 (patch)
tree1a762a8192f2d63ba25518cd10dd24cc61d07c35 /.expeditor
parentcfcb97655ac7fa32e4c7a32a1c5f8ca0c6726629 (diff)
downloadmixlib-cli-d1598c6ebfa5679dd2c87f14f8046e8b4c51bc33.tar.gz
Sync expeditor config
Standard tags, owners to client maintainers and some comments Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to '.expeditor')
-rw-r--r--.expeditor/config.yml34
1 files changed, 21 insertions, 13 deletions
diff --git a/.expeditor/config.yml b/.expeditor/config.yml
index 0806604..a1e8ede 100644
--- a/.expeditor/config.yml
+++ b/.expeditor/config.yml
@@ -1,34 +1,42 @@
-# For more information about Expeditor, visit http://expeditor.es.chef.io
+# Documentation available at https://expeditor.chef.io/docs/getting-started/
---
+# Slack channel in Chef Software slack to send notifications about build failures, etc
slack:
- notify_channel: releng-notify
+ notify_channel: chef-notify
+
+# This publish is triggered by the `built_in:publish_rubygems` artifact_action.
+rubygems:
+ - mixlib-cli
github:
- version_tag_format: "v{{version}}"
+ # This deletes the GitHub PR branch after successfully merged into the release branch
delete_branch_on_merge: true
+ # The tag format to use (e.g. v1.0.0)
+ version_tag_format: "v{{version}}"
+ # The Github Team primarily responsible for handling incoming Pull Requests.
+ maintainer_group: chef/client-maintainers
+ # allow bumping the minor release via label
minor_bump_labels:
- - "Version: Bump Minor"
+ - "Expeditor: Bump Minor Version"
-rubygems:
- - mixlib-cli
+# These actions are taken, in order they are specified, anytime a Pull Request is merged.
merge_actions:
- built_in:bump_version:
ignore_labels:
- - "Version: Skip Bump"
+ - "Expeditor: Skip Version Bump"
- "Expeditor: Skip All"
- bash:.expeditor/update_version.sh:
- only_if:
- - built_in:bump_version
+ only_if: built_in:bump_version
- built_in:update_changelog:
ignore_labels:
- - "Changelog: Skip Update"
+ - "Expeditor: Exclude From Changelog"
- "Expeditor: Skip All"
- built_in:build_gem:
- only_if:
- - built_in:bump_version
+ only_if: built_in:bump_version
promote:
action:
- - built_in:publish_rubygems
- built_in:rollover_changelog
+ - built_in:publish_rubygems
+