Files
stream-applications/scripts/list-workflow-runs.sh
2022-10-06 16:08:37 +02:00

11 lines
247 B
Bash
Executable File

#!/usr/bin/env bash
if [ "$1" == "" ]; then
echo "Provide one or more workflow names like ci.yml that does produce download artefacts"
exit 1
fi
while [ "$1" != "" ]; do
echo "Listing workflow runs for $1"
gh run list -w "$1"
shift
done