diff options
| author | Elliot Matson <1711604+elliotmatson@users.noreply.github.com> | 2023-02-01 19:00:41 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-01 19:00:41 -0600 |
| commit | 37dd23333965bb4acaee739c54ffc6d7f2486761 (patch) | |
| tree | a57d7b4fe60666e8e32119a1d7b1285f494c2dbe /.github/workflows | |
| parent | ecc6ef169a93921ad3d4e0bd7540e27be045d624 (diff) | |
Prevent CI from running on README/docs updates
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/pio_build.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/pio_build.yml b/.github/workflows/pio_build.yml index d64bda4..06729b5 100644 --- a/.github/workflows/pio_build.yml +++ b/.github/workflows/pio_build.yml @@ -7,8 +7,16 @@ name: PlatformIO CI on: push: branches: [ master, dev ] + paths-ignore: + - '**.md' + - 'doc/**' + - '.github/**' pull_request: branches: [ master, dev ] + paths-ignore: + - '**.md' + - 'doc/**' + - '.github/**' jobs: build: |
