Skip to content
Snippets Groups Projects
Unverified Commit a9e17388 authored by Yaroslav Lobankov's avatar Yaroslav Lobankov
Browse files

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

(cherry picked from commit 2d97e4c8)
parent d5f7fd53
No related branches found
No related tags found
No related merge requests found
......@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment