diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2021-02-08 23:50:58 -0700 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2021-02-09 01:21:14 -0700 |
| commit | bd1f5a924e95a41cd56855f56ca010b72b8268ca (patch) | |
| tree | 15c098ac8f2fe1a1955b0eb89472acc4762870c8 /.github | |
| parent | bc7f9f10467d28de0ffc7630bc292761aed08c91 (diff) | |
don't run CI job when only files in docs folder are changed
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index df810cdf..acb645a4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,9 @@ on: push: branches: ['**'] tags-ignore: ['**'] + paths-ignore: ['docs/**'] pull_request: + paths-ignore: ['docs/**'] schedule: - cron: '0 2 * * *' jobs: |
