Skip to content

feat: ability to list, add, and edit functions and function options #109

feat: ability to list, add, and edit functions and function options

feat: ability to list, add, and edit functions and function options #109

name: Orchestration DEV
on:
pull_request:
branches:
- main
types:
- opened
- reopened
- synchronize
jobs:
analysis:
name: Analysis
uses: ./.github/workflows/analysis.yml
secrets: inherit
diff:
name: Check for Changes
runs-on: ubuntu-latest
outputs:
backend: ${{ steps.backend.outputs.backend }}
steps:
- name: Check out repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check for changes in backend/
id: backend
run: echo "backend=$(git --no-pager diff --name-only origin/main backend/ | grep ".go\|.sum\|Dockerfile" | head -n 1)" >> $GITHUB_OUTPUT
backend:
name: Backend
needs:
- analysis
- diff
if: contains(needs.diff.outputs.backend, 'backend/')
uses: ./.github/workflows/backend.yml
with:
environment: DEV
secrets: inherit
infrastructure:
name: Infrastructure
needs:
- analysis
- diff
- backend
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/infrastructure.yml
with:
environment: DEV
secrets: inherit