From 224299fe5c24ca882a18b607cf4e9729a9fd8f92 Mon Sep 17 00:00:00 2001 From: Dunqing Date: Tue, 26 Mar 2024 11:58:55 +0800 Subject: [PATCH] ci: ci should run when clone-submodules/action.yml changes (#2816) When we change `clone-submodules/action.yml`, the snapshot will probably be updated as well, so I'd run ci to make sure the snapshot is correct. --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2a9127e04..d2967f104 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,6 +8,7 @@ on: - '**/*.md' - '**/*.yml' - '!.github/workflows/ci.yml' + - '!.github/actions/clone-submodules/action.yml' push: branches: - main @@ -15,6 +16,7 @@ on: - '**/*.md' - '**/*.yml' - '!.github/workflows/ci.yml' + - '!.github/actions/clone-submodules/action.yml' concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}