#!/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=" Lists GitHub Actions Workflows run 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=" []" 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_actions_workflow_runs.sh" "$workflow_name" | jq -r 'limit(1; .workflow_runs[] | .conclusion?)' )" echo "$output" } & done | sort | column -t