From 10c1832d83c109adfe11d1652ded3f64547becb4 Mon Sep 17 00:00:00 2001 From: MaoShizhong <122839503+MaoShizhong@users.noreply.github.com> Date: Wed, 7 Aug 2024 10:18:03 +0100 Subject: [PATCH] Remove ? in change-files patterns --- .github/workflows/prettier.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index 3396cb6b..37b52266 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -4,7 +4,8 @@ on: paths: - '**/*.js' - '**/*.json' - - '**/*.ya?ml' + - '**/*.yml' + - '**/*.yaml' jobs: format_check: @@ -18,7 +19,8 @@ jobs: files: | **/*.js **/*.json - **/*.ya?ml + **/*.yml + **/*.yaml separator: ' ' - uses: creyD/prettier_action@v4.3 with: