Merge remote-tracking branch 'upstream/main' #330
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: Test Provision K8s Action | |
| "on": | |
| push: | |
| branches: [main, stable, 'rhoai-*'] | |
| paths: | |
| - 'ci/cached-builds/**' | |
| - '.github/actions/provision-k8s/**' | |
| pull_request: | |
| paths: | |
| - 'ci/cached-builds/**' | |
| - '.github/actions/provision-k8s/**' | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| test-provisioning: | |
| runs-on: ubuntu-26.04 | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: Provision K8s cluster | |
| uses: ./.github/actions/provision-k8s |