forked from HariSekhon/DevOps-Bash-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub_actions_workflow_runs.sh
More file actions
executable file
·77 lines (59 loc) · 1.97 KB
/
Copy pathgithub_actions_workflow_runs.sh
File metadata and controls
executable file
·77 lines (59 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/env bash
# vim:ts=4:sts=4:sw=4:et
# args: ci_ubuntu
#
# Author: Hari Sekhon
# Date: 2020-02-12 16:21:52 +0000 (Wed, 12 Feb 2020)
#
# https://github.com/HariSekhon/DevOps-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="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# shellcheck disable=SC1090,SC1091
. "$srcdir/lib/utils.sh"
# shellcheck disable=SC1090,SC1091
. "$srcdir/lib/git.sh"
# shellcheck disable=SC2034
usage_description="
Returns GitHub Actions Workflow runs for a given Workflow ID (or name.yaml) in json format via the API
Workflow ID can be either a number (see output of adjacent github_actions_workflows.sh), or the name of the workflow yaml file, with or without the .yaml extension
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="<workflow_id> [<repo>]"
help_usage "$@"
workflow_id="${1:-${WORKFLOW_ID:-}}"
repo="${2:-${REPO:-}}"
if [ -z "$workflow_id" ]; then
usage "workflow_id not specified"
fi
if ! [[ "$workflow_id" =~ ^[[:digit:]]+$ ]]; then
if ! [[ "$workflow_id" =~ \.ya?ml$ ]]; then
workflow_id="$workflow_id.yaml"
fi
fi
if [ -z "$repo" ]; then
repo="$(git_repo)"
fi
if [ -z "$repo" ]; then
usage "repo not specified and couldn't determine from git remote command"
fi
for arg; do
case "$arg" in
-*) usage
;;
esac
done
if ! [[ $repo =~ / ]]; then
repo="$USER/$repo"
fi
"$srcdir/github_api.sh" "/repos/$repo/actions/workflows/$workflow_id/runs" # | | jq '.workflow_runs[0:10]'