Skip to content

Fix parent filter rule for relationships in forms to not mark as required if the field is required #350

Fix parent filter rule for relationships in forms to not mark as required if the field is required

Fix parent filter rule for relationships in forms to not mark as required if the field is required #350

---
# yamllint disable rule:truthy
name: Update Docker Compose & helm chart on Pyproject update in Stable
# This will bump the infrahub docker image in the docker-compose.yml
# when pyproject.toml is change in the stable branch
on:
push:
branches:
- stable
paths:
- 'pyproject.toml'
pull_request:
branches:
- stable
types:
- closed
jobs:
update-docker-compose:
runs-on: ubuntu-latest
if: |
github.event_name == 'push' ||
(github.event_name == 'pull_request' && github.event.pull_request.merged == true &&
github.event.pull_request.base.ref == 'stable')
steps:
- name: "Check out repository code"
uses: "actions/checkout@v4"
with:
token: ${{ secrets.GH_INFRAHUB_BOT_TOKEN }}
submodules: true
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: "Setup environment"
run: |
pipx install poetry==1.8.5
poetry config virtualenvs.prefer-active-python true
- name: "Install Package"
run: "poetry install --all-extras"
- name: "Update Docker Env variable in docker-compose.yml file"
run: "poetry run invoke release.gen-config-env -u"
- name: "Update Infrahub Image Version in docker-compose.yml file"
run: "poetry run invoke release.update-docker-compose"
- name: "Update AppVersion in helm/chart.yaml file"
run: "poetry run invoke release.update-helm-chart"
- name: "Update Versions in python_testcontainers/pyproject.toml"
run: "poetry run invoke release.update-test-containers"
- name: Commit docker-compose.yml and helm
uses: github-actions-x/commit@v2.9
with:
github-token: ${{ secrets.GH_INFRAHUB_BOT_TOKEN }}
push-branch: 'stable'
commit-message: 'chore: update docker-compose and helm chart'
files: |
docker-compose.yml
helm/Chart.yaml
python_testcontainers/pyproject.toml
name: opsmill-bot
email: github-bot@opsmill.com
rebase: true