summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.expeditor/verify.pipeline.yml28
-rw-r--r--.github/CODEOWNERS2
-rw-r--r--.github/PULL_REQUEST_TEMPLATE.md15
3 files changed, 29 insertions, 16 deletions
diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml
new file mode 100644
index 0000000..a3efc1c
--- /dev/null
+++ b/.expeditor/verify.pipeline.yml
@@ -0,0 +1,28 @@
+steps:
+
+- label: run-lint-and-specs-ruby-2.4
+ command:
+ - asdf local ruby 2.4.5
+ - bundle install --jobs=7 --retry=3
+ - bundle exec rake
+ expeditor:
+ executor:
+ docker:
+
+- label: run-lint-and-specs-ruby-2.5
+ command:
+ - asdf local ruby 2.5.5
+ - bundle install --jobs=7 --retry=3
+ - bundle exec rake
+ expeditor:
+ executor:
+ docker:
+
+- label: run-lint-and-specs-ruby-2.6
+ command:
+ - asdf local ruby 2.6.3
+ - bundle install --jobs=7 --retry=3
+ - bundle exec rake
+ expeditor:
+ executor:
+ docker:
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index 9dbcc7b..f1217b3 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -1,5 +1,5 @@
# Order is important. The last matching pattern has the most precedence.
-* @chef/chef-infra-reviewers
+* @chef/chef-foundation-reviewers
.expeditor/** @chef/jex-team
*.md @chef/docs-team
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
deleted file mode 100644
index 0df03f8..0000000
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ /dev/null
@@ -1,15 +0,0 @@
-### Description
-
-[Please describe what this change achieves]
-
-### Issues Resolved
-
-[List any existing issues this PR resolves, or any Discourse or
-StackOverflow discussions that are relevant]
-
-### Check List
-
-- [ ] New functionality includes tests
-- [ ] All tests pass
-- [ ] All commits have been signed-off for the Developer Certificate of Origin. See <https://github.com/chef/chef/blob/master/CONTRIBUTING.md#developer-certification-of-origin-dco>
-- [ ] PR title is a worthy inclusion in the CHANGELOG \ No newline at end of file