feat(deps): update crossplane-contrib/function-auto-ready docker tag … #30
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: on-push-main | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - '.github/workflows/on-push-main.yaml' | |
| - '.github/workflows/on-version-tagged.yaml' | |
| - '.gitops/**' | |
| - 'apis/**' | |
| - 'examples/**' | |
| - 'functions/**' | |
| - 'tests/**' | |
| - 'upbound.yaml' | |
| permissions: | |
| packages: write | |
| contents: write | |
| issues: write | |
| pull-requests: write | |
| id-token: write | |
| jobs: | |
| validate: | |
| uses: unbounded-tech/workflows-crossplane/.github/workflows/validate.yaml@v2.20.0 | |
| with: | |
| examples: | | |
| [ | |
| { "example": "examples/knativestacks/minimal.yaml" }, | |
| { "example": "examples/knativestacks/standard.yaml" } | |
| ] | |
| api_path: apis/knativestacks | |
| error_on_missing_schemas: true | |
| test: | |
| uses: unbounded-tech/workflows-crossplane/.github/workflows/test.yaml@v2.20.0 | |
| e2e: | |
| uses: unbounded-tech/workflows-crossplane/.github/workflows/e2e.yaml@v2.20.0 | |
| with: | |
| # Knative + Istio Ambient + Gateway API teardown is heavy. Mirror the | |
| # aws-observe pattern: KnativeStack manifests cleanup runs first, then | |
| # the heavy infra (IstioStack, GatewayAPIStack) tears down in a separate | |
| # phase with its own budget. | |
| timeout-minutes: 60 | |
| cleanup-timeout-minutes: 30 | |
| delete-extra-resources: | | |
| [ | |
| "istiostacks.hops.ops.com.ai", | |
| "gatewayapistacks.hops.ops.com.ai" | |
| ] | |
| delete-extra-resources-timeout-minutes: 30 | |
| version-and-tag: | |
| name: Version and Tag | |
| needs: | |
| - validate | |
| - test | |
| - e2e | |
| uses: unbounded-tech/workflow-vnext-tag/.github/workflows/workflow.yaml@v1.21.0 | |
| secrets: | |
| DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }} | |
| with: | |
| useDeployKey: true |