From 022be641040e0e518bad42dcd98dc180a13c5cf1 Mon Sep 17 00:00:00 2001 From: Tom Duffield Date: Mon, 17 Sep 2018 12:43:58 -0500 Subject: [Expeditor] Use new template variables in .expeditor/config.yml You can now use `{{version_constraint}}` to reference the version constraint for your release branch. https://expeditor.chef.io/docs/getting-started/subscriptions/#subscription-template-variables Signed-off-by: Tom Duffield --- .expeditor/config.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.expeditor/config.yml b/.expeditor/config.yml index 061694fb25..9074e29a7f 100644 --- a/.expeditor/config.yml +++ b/.expeditor/config.yml @@ -40,9 +40,9 @@ github: # for building. release_branch: - master: - version_constraint: 14.* + version_constraint: 14* - chef-13: - version_constraint: 13.* + version_constraint: 13* # These actions are taken, in order they are specified, anytime a Pull Request is merged. merge_actions: @@ -68,13 +68,13 @@ merge_actions: only_if: built_in:bump_version subscriptions: - - workload: artifact_published:unstable:chef:14* + - workload: artifact_published:unstable:chef:{{version_constraint}} actions: - built_in:build_docker_image - - workload: artifact_published:current:chef:14* + - workload: artifact_published:current:chef:{{version_constraint}} actions: - built_in:tag_docker_image - - workload: artifact_published:stable:chef:14* + - workload: artifact_published:stable:chef:{{version_constraint}} actions: - built_in:rollover_changelog - bash:.expeditor/update_dockerfile.sh -- cgit v1.2.1