ci: ignore js files in unittests (#26934)

* ci: ignore js files in unittests

- Avoid running python unittests on PRs that ONLY change JS files.

* ci: ignore md files in test workflows
This commit is contained in:
Ankush Menat
2021-08-13 12:59:27 +05:30
committed by GitHub
parent b32c2fa561
commit 8a6b82b196
3 changed files with 15 additions and 1 deletions

View File

@@ -1,6 +1,12 @@
name: Patch
on: [pull_request, workflow_dispatch]
on:
pull_request:
paths-ignore:
- '**.js'
- '**.md'
workflow_dispatch:
jobs:
test: