Skip to content

Commit

Permalink
update paths for workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
dmail committed Aug 14, 2024
1 parent 1929782 commit 5885099
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci_eslint_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ on:
- main
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#patterns-to-match-file-paths
paths-ignore:
- "**/README.md"
- "**/md/**"
- "**/docs/**"
- "**/packages/independent/workflow/**"
- "./md/**"
- "./packages/independent/workflow/**"
- "./www/**"
- "**/readme.md"
pull_request:
branches:
- "**"
paths-ignore:
- "**/README.md"
- "**/md/**"
- "**/docs/**"
- "**/packages/independent/workflow/**"
- "./md/**"
- "./packages/independent/workflow/**"
- "./www/**"
- "**/readme.md"

jobs:
test:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci_test_workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ on:
- main
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#patterns-to-match-file-paths
paths-ignore:
- "**/README.md"
- "**/md/**"
- "**/docs/**"
- "./md/**"
- "./www/**"
- "**/readme.md"
pull_request:
branches:
- "**"
paths-ignore:
- "**/README.md"
- "**/md/**"
- "**/docs/**"
- "./md/**"
- "./www/**"
- "./readme.md"

jobs:
test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_www_to_page.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
push:
branches: [$default-branch]
paths:
- "**/docs/**"
- "./www/**"

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand Down

0 comments on commit 5885099

Please sign in to comment.