Skip to content

Commit

Permalink
Add noop workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rygine committed Jun 28, 2024
1 parent 1359ca0 commit 1b18c99
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/noop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
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"

# 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
# cases, but don't actually do anything.

jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- run: echo "Nothing to test"

lint:
name: Lint
runs-on: ubuntu-latest
steps:
- run: echo "Nothing to lint"

0 comments on commit 1b18c99

Please sign in to comment.