Files
holos/hack/tilt/gh-issue-view
Jeff McCune d6ee1864c8 (#116) Tilt for development
Add Tilt back from holos server

Note with this patch the ec-creds.yaml file needs to be applied to the
provisioner and an external secret used to sync the image pull creds.

With this patch the dev instance is accessible behind the auth proxy.
pgAdmin also works from the Tilt UI.

https://jeff.holos.dev.k2.ois.run/app/start
2024-04-09 20:26:37 -07:00

10 lines
226 B
Bash
Executable File

#! /bin/bash
#
set -euo pipefail
issue="$(git rev-parse --abbrev-ref HEAD | tr -d -c 0-9)"
if [[ -z $issue ]]; then
echo "could not extract issue number from branch name" >&2
exit 1
fi
exec gh issue view --comments $issue