From 8060106618e0d16edbaf7657ac5d16345659451b Mon Sep 17 00:00:00 2001 From: Emma Zhong Date: Mon, 27 Mar 2023 18:34:47 -0700 Subject: [PATCH] update isMove filter in actions (#9970) ## Description The filters are pretty out of date. This PR updates them. ## Test Plan How did you test the new or updated feature? --- If your changes are not user-facing and not a breaking change, you can skip the following section. Otherwise, please indicate what changed, and then add to the Release Notes section as highlighted during the release process. ### Type of Change (Check all that apply) - [ ] user-visible impact - [ ] breaking change for a client SDKs - [ ] breaking change for FNs (FN binary must upgrade) - [ ] breaking change for validators or node operators (must upgrade binaries) - [ ] breaking change for on-chain data layout - [ ] necessitate either a data wipe or data migration ### Release notes --- .github/actions/diffs/action.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/actions/diffs/action.yml b/.github/actions/diffs/action.yml index 7c2f8837b15ec..7c7e78ace98f3 100644 --- a/.github/actions/diffs/action.yml +++ b/.github/actions/diffs/action.yml @@ -23,7 +23,6 @@ runs: isRust: - 'crates/**' - 'narwhal/**' - - 'sui_programmability/**' - '.github/workflows/bench.yml' - '.github/workflows/codecov.yml' - '.github/workflows/rust.yml' @@ -32,6 +31,9 @@ runs: - '*.md' - '.github/workflows/docs.yml' isMove: - - 'crates/sui-framework/sources/**' - - 'crates/sui/src/sui_move/**' + - 'crates/sui-framework/**' + - 'crates/sui-framework-build/**' + - 'crates/sui-framework-tests/**' + - 'crates/sui_move/**' - 'Cargo.toml' + - 'sui_programmability/**'