meta: run CI when modifying workflow files (#4091)

This commit is contained in:
Antoine du Hamel 2022-09-07 12:00:50 +02:00 committed by GitHub
parent 7e291abd98
commit c617481057
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 2 deletions

View file

@ -10,7 +10,8 @@ on:
- 'examples/**'
- 'private/**'
- 'website/**'
- '.github/workflows/**'
- '.github/**'
- '!.github/workflows/ci.yml'
jobs:
unit_tests:

View file

@ -8,6 +8,7 @@ on:
paths:
- yarn.lock
- 'packages/@uppy/companion/**'
- '.github/workflows/companion.yml'
jobs:
test:

View file

@ -8,6 +8,8 @@ on:
- 'examples/**'
- 'private/**'
- 'website/**'
- '.github/**'
- '!.github/workflows/e2e.yml'
pull_request_target:
types: [ opened, synchronize, reopened, labeled ]
paths-ignore:
@ -16,7 +18,7 @@ on:
- 'examples/**'
- 'private/**'
- 'website/**'
- '.github/workflows/**'
- '.github/**'
pull_request:
types: [ opened, synchronize, reopened ]
paths:

View file

@ -6,6 +6,7 @@ on:
paths:
- yarn.lock
- 'website/**'
- '.github/workflows/website.yml'
jobs:
deploy: