diff options
author | Bryan McLellan <btm@loftninjas.org> | 2018-10-11 09:00:05 -0400 |
---|---|---|
committer | Bryan McLellan <btm@loftninjas.org> | 2018-10-11 09:00:05 -0400 |
commit | 3216578401ce3670bb0215f600babefffae181be (patch) | |
tree | 824ec0e39a1140f539ca44e5662fc0ea9b655a50 /appveyor.yml | |
parent | 4c6ecad1d2626298e21fd37e50616a883fae1600 (diff) | |
download | chef-3216578401ce3670bb0215f600babefffae181be.tar.gz |
Tune appveyor skip to only version bumps
The Chef repo has Expeditor subscriptions to other repos which
automatically create a PR to bump versions of those dependencies in Chef
when they're released. We were skipping all commits in Appveyor by 'Chef
Expeditor' to avoid testing the automatic version bump commits that
happen on every merge to master.
This change will only skip the version bumps.
Signed-off-by: Bryan McLellan <btm@loftninjas.org>
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index a5a9a13e66..378574103f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -16,7 +16,7 @@ clone_depth: 1 skip_commits: # version bumps by Expeditor happen as a separate commit after the merge, we can skip - author: Chef Expeditor + message: /Bump version to [0-9.]+ by Chef Expeditor/ # if ONLY the files listed below are changed in a commit, skip files: - MAINTAINERS.md |