-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit to branch, so changes can be previewed
- Loading branch information
Showing
1 changed file
with
6 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,12 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- name: Convert Notebooks | ||
run: scripts/convert_notebooks.sh | ||
- name: Commit update | ||
run: | | ||
git config --global user.name 'WeCo bot' | ||
git config --global user.email '[email protected]' | ||
git commit -am "Update notebooks" || exit 0 | ||
git push | ||
- name: Install Node | ||
# https://github.com/actions/setup-node?tab=readme-ov-file#usage | ||
# The node-version input is optional. If not supplied, the node version from PATH will be used. | ||
|