Skip to content
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
4 changes: 4 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ name: Build and Test
on:
# Handle all branches for now
push:
paths-ignore:
- '**/docs/**'
pull_request:
paths-ignore:
- '**/docs/**'
workflow_dispatch:

# Only run the latest job
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build-with-release-profile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ name: Build with '-Prelease' (Trigger)

on:
pull_request: # Changed from pull_request_target for security
paths-ignore:
- '**/docs/**'
push:
paths-ignore:
- '**/docs/**'
workflow_dispatch:

# Only run the latest job
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/cloud-deployment-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ name: Cloud Deployment Example Test

on:
push:
paths-ignore:
- '**/docs/**'
pull_request:
paths-ignore:
- '**/docs/**'
workflow_dispatch:

# Only run the latest job
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/itk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@ name: ITK
on:
push:
branches: [main]
paths-ignore:
- '**/docs/**'
pull_request:

paths-ignore:
- '**/docs/**'
permissions:
contents: read

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ on:
push:
branches:
- main
paths-ignore:
- '**/docs/**'

permissions:
contents: write
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/run-tck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@ on:
push:
branches:
- main
paths-ignore:
- '**/docs/**'
pull_request:
branches:
- main
paths-ignore:
- '**/docs/**'
workflow_dispatch:

env:
Expand Down