Skip to content

Commit 7601691

Browse files
author
mike dupont
committed
update
1 parent 061d2cd commit 7601691

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

scripts/jsdoc-automation/eliza.sh

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
# in bash count down from 42 to 1
3+
GITHUB_REPOSITORY=eliza
4+
GITHUB_ACTOR=elizaos
5+
INPUT_PULL_NUMBER=3881
6+
while [ $INPUT_PULL_NUMBER -gt 0 ]
7+
do
8+
echo $INPUT_PULL_NUMBER
9+
((INPUT_PULL_NUMBER--))
10+
export INPUT_PULL_NUMBER
11+
pnpm run ts
12+
done

0 commit comments

Comments
 (0)