Skip to content
This repository was archived by the owner on Feb 11, 2026. It is now read-only.

Commit f484b55

Browse files
authored
fix the notebook_paths references in validate-notebooks (#21)
**Checklist:** - [ ] **Commit Message Formatting**: Commit titles and messages follow guidelines in the [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/#summary). - [ ] [Changelog](https://github.com/instructlab/ci-actions/blob/main/CHANGELOG.md) updated with breaking and/or notable changes for the next minor release. - [ ] Documentation has been added and/or updated, if applicable. - [ ] Unit tests have been added and/or updated. (If this is not applicable, please provide a justification.) - [ ] Integration testing has been performed, if applicable ## Description of this Change Approved-by: courtneypacheco Approved-by: ktdreyer
2 parents 976ffc4 + 958be2d commit f484b55

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

actions/validate-notebooks/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ runs:
1616
run: pip install nbformat
1717
- name: Validate Notebooks
1818
shell: bash
19-
run: python ${{ github.action_path }}/validate.py $notebook_paths ${{ inputs.path }}
19+
run: python ${{ github.action_path }}/validate.py ${{ inputs.path }}

actions/validate-notebooks/validate-notebooks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ jobs:
2828
- name: Validate Jupyter Notebooks
2929
uses: ./ci-actions/actions/validate-notebooks
3030
with:
31-
notebook_paths: "notebooks/"
31+
path: "notebooks/"
3232
```

0 commit comments

Comments
 (0)