Set pipefail
and redirect stderr to stdout in Supervisor Envoy config
#229
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check merge requirements | ||
on: | ||
pull_request: | ||
jobs: | ||
check-release-version: | ||
timeout-minutes: 5 | ||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v3 | ||
run: | | ||
SUFFIX=$(sed -E 's/postgres-version = "[0-9\.]+(.*)"/\1/g' common.vars.pkr.hcl) | ||
if [[ -n $SUFFIX ]] ; then | ||
echo "We no longer allow merging RC versions to develop." | ||
exit 1 | ||
fi |