Storage size for PostgreSQL data #35
Workflow file for this run
This file contains hidden or 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 if RC for Op-Kits | |
on: | |
pull_request: | |
paths: | |
- 'charts/op-kits/**' | |
- '!charts/rasa/**' | |
- '!charts/studio/**' | |
- '!replicated/**' | |
- '!.github/**' | |
jobs: | |
check-rc: | |
if: ${{ !contains(github.event.pull_request.labels.*.name, 'automated') }} | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c | |
with: | |
fetch-depth: 0 | |
- name: Read Helm Chart | |
id: chart-info | |
uses: miraai/read-helm-chart-yaml@9a798908719da8d062b86097d4ff1ad85abfc7aa | |
with: | |
path: charts/op-kits/ | |
- name: Check if its release candidate | |
run: | | |
VERSION="${{ steps.chart-info.outputs.name }}-${{ steps.chart-info.outputs.version }}" | |
if [[ $VERSION != *-rc* ]]; then | |
echo "The Helm chart version is not a release candidate." | |
else | |
echo "The Helm chart version is a release candidate." | |
echo "Please change version in Chart.yaml to match release versioning." | |
exit 1 | |
fi |