Skip to content

Commit 32add73

Browse files
committed
Prevent workflow runs on documentation changes
1 parent 12f1b79 commit 32add73

3 files changed

Lines changed: 12 additions & 6 deletions

File tree

.github/workflows/continuous-integration.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
name: Continuous Integration
22

33
on:
4-
- push
5-
- pull_request
4+
push:
5+
paths-ignore: ["**.md"]
6+
pull_request:
7+
paths-ignore: ["**.md"]
68

79
env:
810
COMPOSER_FLAGS: --ansi --no-interaction --no-progress --prefer-dist

.github/workflows/lint.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
name: PHP Lint
22

33
on:
4-
- push
5-
- pull_request
4+
push:
5+
paths-ignore: ["**.md"]
6+
pull_request:
7+
paths-ignore: ["**.md"]
68

79
jobs:
810
tests:

.github/workflows/phpstan.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
name: PHPStan
22

33
on:
4-
- push
5-
- pull_request
4+
push:
5+
paths-ignore: ["**.md"]
6+
pull_request:
7+
paths-ignore: ["**.md"]
68

79
env:
810
COMPOSER_FLAGS: --ansi --no-interaction --no-progress --prefer-dist

0 commit comments

Comments
 (0)