Merge branch 'stable' into devel
[tails.git] / bin / gitlab-triage-post-release
blob4a7e86575266669589c9df9969043740c98b4a0d
1 #!/bin/sh
3 set -e
4 set -u
5 set -x
7 # please note that if those variable are unset, the error message will be different, because of set -u
8 if [ -z "${VERSION}" ] || [ -z "${NEXT_PLANNED_VERSION}" ] ; then
9 echo "Some environment variable is empty" >&2
10 exit 2
12 export PODMAN_ARGS="--env VERSION --env NEXT_PLANNED_VERSION"
14 "$(dirname "$0")"/../config/gitlab-triage/bin/gitlab-triage \
15 --source-id tails --source groups \
16 --policies-file /etc/gitlab-triage-policies/release_management/missed-resources.yml \
17 "${@}"