Skip to content

Commit

Permalink
Fix paths syntax for GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ai committed Apr 8, 2024
1 parent 6e8cc29 commit b928c14
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 24 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/preview-close.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ on:
types:
- closed
paths-ignore:
- './**/*.md'
- './proxy/**'
- './server/**'
- './scripts/**'
- './.vscode/**'
- './.husky/**'
- './.github/**'
- './core/test/**'
- './loader-tests/**'
- '**/*.md'
- 'proxy/**'
- 'server/**'
- 'scripts/**'
- '.vscode/**'
- '.husky/**'
- '.github/**'
- 'core/test/**'
- 'loader-tests/**'
jobs:
close:
name: Close
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/preview-prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ name: Start Preview Deployment
on:
pull_request:
paths-ignore:
- './**/*.md'
- './proxy/**'
- './server/**'
- './scripts/**'
- './.vscode/**'
- './.husky/**'
- './.github/**'
- './core/test/**'
- './loader-tests/**'
- '**/*.md'
- 'proxy/**'
- 'server/**'
- 'scripts/**'
- '.vscode/**'
- '.husky/**'
- '.github/**'
- 'core/test/**'
- 'loader-tests/**'
permissions:
contents: read
jobs:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ on:
branches:
- main
paths-ignore:
- './**/*.md'
- './.vscode/**'
- './.husky/**'
- '**/*.md'
- '.vscode/**'
- '.husky/**'
pull_request:
paths-ignore:
- './**/*.md'
- './.vscode/**'
- './.husky/**'
- '**/*.md'
- '.vscode/**'
- '.husky/**'
jobs:
test:
permissions:
Expand Down

0 comments on commit b928c14

Please sign in to comment.