From bc54bd7bb0546913a708c33f4a3e939418bae2af Mon Sep 17 00:00:00 2001 From: Nick Volynkin Date: Tue, 1 Jul 2025 19:35:44 +0300 Subject: [PATCH] [ci] Don't restart tests and pre-commit checks when PR is labeled I labeled my PR and CI was re-started, so now I have to wait even more. We have no labels governing CI, so there's no reason to restart it on `labeled`. Signed-off-by: Nick Volynkin --- .github/workflows/pre-commit.yml | 2 +- .github/workflows/pull-requests.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 7f41ffd8..8dcd859e 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -2,7 +2,7 @@ name: Pre-Commit Checks on: pull_request: - types: [labeled, opened, synchronize, reopened] + types: [opened, synchronize, reopened] concurrency: group: pre-commit-${{ github.workflow }}-${{ github.event.pull_request.number }} diff --git a/.github/workflows/pull-requests.yaml b/.github/workflows/pull-requests.yaml index 416a4b3c..2e6c4e10 100644 --- a/.github/workflows/pull-requests.yaml +++ b/.github/workflows/pull-requests.yaml @@ -2,7 +2,7 @@ name: Pull Request on: pull_request: - types: [labeled, opened, synchronize, reopened] + types: [opened, synchronize, reopened] paths-ignore: - 'docs/**/*'