Skip to content

Commit

Permalink
Add branches filter on workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbalandan committed Nov 19, 2023
1 parent 39119f4 commit 6d05e39
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/test-coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@ on:
schedule:
- cron: '0 0 * * *'
pull_request:
branches:
- '*.x'
paths:
- '.github/workflows/test-coding-standards.yml'
- '**.php'
push:
branches:
- '*.x'
paths:
- '.github/workflows/test-coding-standards.yml'
- '**.php'
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test-phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,16 @@ on:
schedule:
- cron: '0 0 * * *'
pull_request:
branches:
- '*.x'
paths:
- '.github/workflows/test-phpstan.yml'
- '**.php'
- 'extension.neon'
- 'phpstan.neon.dist'
push:
branches:
- '*.x'
paths:
- '.github/workflows/test-phpstan.yml'
- '**.php'
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test-phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@ on:
schedule:
- cron: '0 0 * * *'
pull_request:
branches:
- '*.x'
paths:
- '.github/workflows/test-phpunit.yml'
- '**.php'
- 'phpunit.dist.xml'
push:
branches:
- '*.x'
paths:
- '.github/workflows/test-phpunit.yml'
- '**.php'
Expand Down

0 comments on commit 6d05e39

Please sign in to comment.