Skip to content

Commit

Permalink
ENH: Remove PR notebook checks
Browse files Browse the repository at this point in the history
Notebook checks always run with the most recent `itk-ultrasound` PyPI
package release and do not reflect individual PR changes. This updates
the notebook workflow to only run on commits in the `master` branch to
reduce confusion.

Addresses #177. Reference discussion at
https://github.community/t/trigger-workflow-only-on-pull-request-merge/17359
.
  • Loading branch information
tbirdso authored and dzenanz committed Jun 27, 2022
1 parent b82205c commit b20cd45
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test-notebooks.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Test notebooks

on: [push,pull_request]
on:
push:
branches:
- master

jobs:
nbmake:
Expand Down

0 comments on commit b20cd45

Please sign in to comment.