You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DevOps-Bash-tools/github_actions_workflows_st...

55 lines
1.4 KiB
Bash

#!/usr/bin/env bash
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2020-02-12 16:21:52 +0000 (Wed, 12 Feb 2020)
#
# https://github.com/harisekhon/bash-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
# https://www.linkedin.com/in/harisekhon
#
set -euo pipefail
[ -n "${DEBUG:-}" ] && set -x
srcdir="$(dirname "$0")"
# shellcheck source=lib/utils.sh
. "$srcdir/lib/utils.sh"
# shellcheck disable=SC2034,SC2154
usage_description="
Script to get GitHub Workflow runs status via the API
If no repo arg is given and is inside a git repo then takes determines the repo from the first git remote listed
\$REPO and \$WORKFLOW_ID environment variables are also supported with positional args taking precedence
"
# used by usage() in lib/utils.sh
# shellcheck disable=SC2034
usage_args="<repo> [<workflow_id>]"
workflows="$(
"$srcdir/github_actions_workflows.sh" "$@" |
jq -r '.workflows[].path' |
sed 's|.github/workflows/||;s|\.yaml$||'
)"
for workflow_name in $workflows; do
{
output="$(
printf '%s\t' "$workflow_name"
"$srcdir/github_workflow_runs.sh" "$workflow_name" |
jq -r 'limit(1; .workflow_runs[] | .conclusion?)'
)"
echo "$output"
} &
done |
sort |
column -t