Skip to content

Commit

Permalink
Update noop path filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
rygine committed Jun 28, 2024
1 parent 0bcdf16 commit ce3c082
Showing 1 changed file with 21 additions and 15 deletions.
36 changes: 21 additions & 15 deletions .github/workflows/noop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,27 @@ name: No Op
on:
pull_request:
# ignore code changes
paths-ignore:
- "bindings_ffi/**"
- "bindings_node/**"
- "dev/**"
- "mls_validation_service/**"
- "xmtp_api_grpc/**"
- "xmtp_cryptography/**"
- "xmtp_id/**"
- "xmtp_mls/**"
- "xmtp_proto/**"
- "xmtp_v2/**"
- "Cargo.toml"
- "Cargo.lock"
- "rust-toolchain"
- "rustfmt.toml"
paths:
- "!.github/workflows/lint-ffi-bindings.yml"
- "!.github/workflows/lint-node-bindings.yml"
- "!.github/workflows/lint-workspace.yml"
- "!.github/workflows/test-ffi-bindings.yml"
- "!.github/workflows/test-node-bindings.yml"
- "!.github/workflows/test-workspace.yml"
- "!bindings_ffi/**"
- "!bindings_node/**"
- "!dev/**"
- "!mls_validation_service/**"
- "!xmtp_api_grpc/**"
- "!xmtp_cryptography/**"
- "!xmtp_id/**"
- "!xmtp_mls/**"
- "!xmtp_proto/**"
- "!xmtp_v2/**"
- "!Cargo.toml"
- "!Cargo.lock"
- "!rust-toolchain"
- "!rustfmt.toml"

# Test and Lint steps are required for pull requests, but some file changes
# don't require them to run. These jobs define the required steps for these
Expand Down

0 comments on commit ce3c082

Please sign in to comment.