Skip to content

Commit

Permalink
build(.github) format include paths with single quotes
Browse files Browse the repository at this point in the history
skip-ci
  • Loading branch information
lucatume committed Oct 14, 2023
1 parent 224158c commit 78a5b5a
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 32 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ name: docs
on:
pull_request:
paths:
- "docs/**"
- "mkdocs.yml"
- ".github/workflows/docs.yml"
- 'docs/**'
- 'mkdocs.yml'
- '.github/workflows/docs.yml'
push:
paths:
- "docs/**"
- "mkdocs.yml"
- ".github/workflows/docs.yml"
- 'docs/**'
- 'mkdocs.yml'
- '.github/workflows/docs.yml'
branches:
- master
permissions:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/phpcbf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ name: "PHPCBF automatically fix violations"
on: # yamllint disable-line rule:truthy
pull_request:
paths:
- "src/**"
- "includes/**"
- ".github/workflows/phpcbf.yml"
- 'src/**'
- 'includes/**'
- '.github/workflows/phpcbf.yml'
push:
paths:
- "src/**"
- "includes/**"
- ".github/workflows/phpcbf.yml"
- 'src/**'
- 'includes/**'
- '.github/workflows/phpcbf.yml'
branches:
- master

Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ name: "Static Analysis"
on: # yamllint disable-line rule:truthy
pull_request:
paths:
- "src/**"
- "includes/**"
- "tests/**"
- "composer.json"
- ".github/workflows/static-analysis.yml"
- 'src/**'
- 'includes/**'
- 'tests/**'
- 'composer.json'
- '.github/workflows/static-analysis.yml'
push:
paths:
- "src/**"
- "includes/**"
- "tests/**"
- "composer.json"
- ".github/workflows/static-analysis.yml"
- 'src/**'
- 'includes/**'
- 'tests/**'
- 'composer.json'
- '.github/workflows/static-analysis.yml'
branches:
- "master"

Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ name: Test
on: # yamllint disable-line rule:truthy
pull_request:
paths:
- "src/**"
- "includes/**"
- "tests/**"
- "composer.json"
- ".github/workflows/test.yaml"
- 'src/**'
- 'includes/**'
- 'tests/**'
- 'composer.json'
- '.github/workflows/test.yaml'
push:
paths:
- "src/**"
- "includes/**"
- "tests/**"
- "composer.json"
- ".github/workflows/test.yaml"
- 'src/**'
- 'includes/**'
- 'tests/**'
- 'composer.json'
- '.github/workflows/test.yaml'
branches:
- "master"

Expand Down

0 comments on commit 78a5b5a

Please sign in to comment.