feat: update AI action invocation variable types to sys-nested format [BBEE-2227] #1153
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: CI | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: ['**'] | |
| pull_request: | |
| branches: ['**'] | |
| jobs: | |
| build: | |
| uses: ./.github/workflows/build.yaml | |
| check: | |
| needs: build | |
| uses: ./.github/workflows/check.yaml | |
| test-demo-projects: | |
| needs: [build, check] | |
| uses: ./.github/workflows/test-demo-projects.yaml | |
| secrets: inherit | |
| test-integration: | |
| needs: [build, check, test-demo-projects] | |
| uses: ./.github/workflows/test-integration.yaml | |
| secrets: inherit | |
| release: | |
| if: github.event_name == 'push' && (contains(fromJSON('["refs/heads/master", "refs/heads/beta", "refs/heads/canary", "refs/heads/dev"]'), github.ref) || endsWith(github.ref, '.x')) | |
| needs: [build, check, test-demo-projects, test-integration] | |
| permissions: | |
| contents: write | |
| id-token: write | |
| actions: read | |
| uses: ./.github/workflows/release.yaml | |
| secrets: | |
| VAULT_URL: ${{ secrets.VAULT_URL }} |