From 2d97e4c8cee5a064e2ac4206912d5b03415c7ccf Mon Sep 17 00:00:00 2001 From: Yaroslav Lobankov <y.lobankov@tarantool.org> Date: Thu, 28 Apr 2022 01:28:29 +0300 Subject: [PATCH] ci: run integration WF on 'integration-ci' label Sometimes we would like to run only integration testing and not touch other tests. Now it can be done by setting the 'integration-ci' label on a pull request. NO_DOC=ci NO_TEST=ci NO_CHANGELOG=ci --- .github/workflows/integration.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index ad6b5736e6..cf1a8beeea 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -34,10 +34,11 @@ concurrency: jobs: tarantool: # Run on push to the 'master' and release branches of tarantool/tarantool - # or on pull request if the 'full-ci' label is set. + # or on pull request if the 'full-ci' or 'integration-ci' label is set. if: github.repository == 'tarantool/tarantool' && ( github.event_name != 'pull_request' || - contains(github.event.pull_request.labels.*.name, 'full-ci') ) + contains(github.event.pull_request.labels.*.name, 'full-ci') || + contains(github.event.pull_request.labels.*.name, 'integration-ci') ) uses: tarantool/tarantool/.github/workflows/reusable_build.yml@master with: -- GitLab