From 9bf5506465f50611d2238c2f977f46858a59adb3 Mon Sep 17 00:00:00 2001 From: Nenad Date: Wed, 29 Jul 2026 12:01:30 +0200 Subject: [PATCH] ci: Update check.yml workflow to remove paths-ignore Removed paths-ignore for pull_request and push events in the workflow configuration. This is causing stuck PRs like #366 (review) - these jobs are "Required" for a PR to be merged, but they never run because the PR changes ignored files. --- .github/workflows/check.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 3c4763e9..15e9f37e 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -13,15 +13,8 @@ permissions: on: push: branches: [main, release-v*] - paths-ignore: - - "**.md" - - ".vscode" - - ".cargo" pull_request: - paths-ignore: - - "**.md" - - ".vscode" - - ".cargo" + # If new code is pushed to a PR branch, then cancel in progress workflows for # that PR. Ensures that we don't waste CI time, and returns results quicker. # https://github.com/jonhoo/rust-ci-conf/pull/5