Files
stream-applications/scripts/list-workflow-runs.sh
2022-11-02 11:09:47 +02:00

11 lines
239 B
Bash
Executable File

#!/bin/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