Skip to content

Commit

Permalink
Don't run old arch integrity check on every PR (#2998)
Browse files Browse the repository at this point in the history
## Description

`Test Paper Architecture integrity` action is running on every PR, even
when the relevant files aren't modified. This PR changes that.
  • Loading branch information
j-piasecki authored Jul 16, 2024
1 parent e70dd62 commit 43f00ab
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/check-paper-integrity.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
name: Test Paper Architecture integrity
on: [pull_request]
on:
pull_request:
paths:
- '.github/workflows/check-paper-integrity.yml'
- 'src/specs/**'
- 'android/paper/**'
push:
branches:
- main
workflow_dispatch:
jobs:
check:
if: github.repository == 'software-mansion/react-native-gesture-handler'
Expand Down

0 comments on commit 43f00ab

Please sign in to comment.