Skip to content

Commit

Permalink
ci: restrict workflow paths
Browse files Browse the repository at this point in the history
Signed-off-by: Varun Patil <[email protected]>
  • Loading branch information
pulsejet committed Oct 20, 2023
1 parent 1287a8e commit ca75673
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ on:
push:
branches:
- master
paths:
- 'docs/**'
- 'CHANGELOG.md'
- 'mkdocs.yml'

permissions:
contents: write
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
branches:
- master
- pulsejet/*
paths-ignore:
- 'docs/**'
- 'mkdocs.yml'
- '**.md'

env:
APP_NAME: memories
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/static-analysis.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
---
name: static analysis
on:
- push
- pull_request
push:
paths-ignore:
- 'docs/**'
- 'mkdocs.yml'
- '**.md'
pull_request:
paths-ignore:
- 'docs/**'
- 'mkdocs.yml'
- '**.md'

jobs:
php-lint:
Expand Down

0 comments on commit ca75673

Please sign in to comment.