Skip to content

Commit

Permalink
Address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
manuzhang committed Dec 4, 2024
1 parent 973016d commit 937d3b4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 22 deletions.
15 changes: 1 addition & 14 deletions .github/workflows/python-ci-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,7 @@ on:
push:
branches:
- 'main'
pull_request:
paths:
- '**'
- '!.github/ISSUE_TEMPLATE/**'
- '!.github/workflows/*'
- '.github/workflows/python-ci-docs.yml'
- '!.gitignore'
- '!.asf.yml'
- '!mkdocs/**'
- '!.gitattributes'
- '!README.md'
- '!CONTRIBUTING.md'
- '!LICENSE'
- '!NOTICE'
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ on:
- 'main'
pull_request:
paths:
- '**'
- '!.github/ISSUE_TEMPLATE/**'
- '!.github/workflows/**'
- '.github/workflows/python-ci.yml'
- '**' # Include all files and directories in the repository by default.
- '!.github/workflows/**' # Exclude all workflow files
- '.github/workflows/python-ci.yml' # except the current file.
- '!.github/ISSUE_TEMPLATE/**' # Exclude files and directories that don't impact tests or code like templates, metadata, and documentation.
- '!.gitignore'
- '!.asf.yml'
- '!mkdocs/**'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/python-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ on:
- 'main'
pull_request:
paths:
- '**'
- '!.github/ISSUE_TEMPLATE/**'
- '!.github/workflows/**'
- '.github/workflows/python-integration.yml'
- '**' # Include all files and directories in the repository by default.
- '!.github/workflows/**' # Exclude all workflow files
- '.github/workflows/python-integration.yml' # except the current file.
- '!.github/ISSUE_TEMPLATE/**' # Exclude files and directories that don't impact tests or code like templates, metadata, and documentation.
- '!.gitignore'
- '!.asf.yml'
- '!mkdocs/**'
Expand Down

0 comments on commit 937d3b4

Please sign in to comment.