mirror of
https://github.com/kestra-io/kestra.git
synced 2025-12-19 18:05:41 -05:00
11 lines
243 B
Bash
11 lines
243 B
Bash
set -e
|
|
|
|
OWNER='kestra-io'
|
|
|
|
gh repo list "$OWNER" --limit 1000 --json name -q '.[] | select(.name | startswith("plugin-")) | .name' |
|
|
while read -r repo; do
|
|
echo "Calling script for $repo"
|
|
sh launch-release-workflow.sh $repo master &
|
|
done
|
|
|