Files
kestra/dev-tools/rc-manual-utilities/gh_run-main-workflow-on-all-plugins.sh
2025-07-09 10:19:05 +02:00

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