From 8bf0d3581e9fea484ad058231cbb69ade55e2b63 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Mon, 27 Apr 2026 04:41:03 +0000 Subject: fix(ci): Use ** instead of * in workflow path filters --- .github/workflows/check.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index c1d1f7a..f21d758 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -4,10 +4,10 @@ on: workflow_dispatch: push: paths: - - "*" + - "**" pull_request: paths: - - "*" + - "**" env: CARGO_TERM_COLOR: always -- cgit v1.2.3