Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updating workflows to ignore doc changes #41

Merged
merged 1 commit into from
Nov 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 0 additions & 62 deletions .github/workflows/codeql-analysis.yml

This file was deleted.

8 changes: 8 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,15 @@ name: Docker Image CI
on:
push:
branches: [ "master" ]
paths-ignore:
- 'README.md'
- 'docs/**'
- 'examples/**'
- LICENSE
- mkdocs.yml

workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ name: Python Package Publication

# Controls when the action will run.
on:
pull_request:
types: [closed]
branches: [master]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
inputs:
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,20 @@ name: Test Python bindings
on:
push:
branches: [ "master" ]
paths-ignore:
- 'README.md'
- 'docs/**'
- 'examples/**'
- LICENSE
- mkdocs.yml
pull_request:
branches: [ "master" ]
paths-ignore:
- 'README.md'
- 'docs/**'
- 'examples/**'
- LICENSE
- mkdocs.yml
workflow_dispatch:

jobs:
Expand Down