Skip to content

Commit 6345221

Browse files
committed
Fixed workflow 2
1 parent 45d123a commit 6345221

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/clear-notebook-outputs.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
# - package.json # Adjust as needed
1212

1313
jobs:
14-
propagate:
14+
remove-notebook-outputs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout source repo
@@ -21,8 +21,8 @@ jobs:
2121
run: |
2222
git config --global user.name "Clear Notebook Outputs Action"
2323
git config --global user.email "[email protected]"
24-
25-
- name: Clear notebook outputs in target repos and create PRs
24+
25+
- name: Install prerequisites
2626
run: |
2727
sudo apt-get update -y
2828
@@ -32,7 +32,9 @@ jobs:
3232
echo ✅ ------------------------
3333
# Install Jupyter notebook
3434
sudo apt-get install jupyter -y
35-
35+
36+
- name: Clear notebook outputs in target repos and create PRs
37+
run: |
3638
# Get all notebook files
3739
files=$(git ls-files '*.ipynb')
3840
[ -z "$files" ] && exit 0

0 commit comments

Comments
 (0)