From 6671869accfc09a53aeb17ced99e737636e60e07 Mon Sep 17 00:00:00 2001 From: Andrei Kvapil Date: Thu, 10 Apr 2025 11:13:51 +0200 Subject: [PATCH] [ci] Automatically run tests as part of release pipepline Signed-off-by: Andrei Kvapil --- .github/workflows/tags.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tags.yaml b/.github/workflows/tags.yaml index c67f0f11..53992c61 100644 --- a/.github/workflows/tags.yaml +++ b/.github/workflows/tags.yaml @@ -109,7 +109,7 @@ jobs: owner: context.repo.owner, repo: context.repo.repo, issue_number: newPr.data.number, - labels: ['release', 'ok-to-test'] + labels: ['release'] }); } else { @@ -157,3 +157,6 @@ jobs: if: steps.check_release.outputs.skip == 'false' run: | git push --delete origin ${GITHUB_REF#refs/tags/} + + - name: Run tests + run: make test