feat: test pipelines v1.2.0 #184
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: Run Zookeeper Pipeline | |
| permissions: | |
| contents: read | |
| packages: read | |
| actions: read | |
| on: | |
| push | |
| # pull_request: | |
| # types: [opened, synchronize, reopened] | |
| # branches: [main] | |
| jobs: | |
| Wait-for-images: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| conclusion: ${{ steps.wait.outputs.conclusion }} | |
| steps: | |
| - name: Wait for dev_build.yml to complete | |
| uses: netcracker/qubership-workflow-hub/actions/wait-for-workflow@396774180000abdb825cbf150b56cc59c6913db8 #v2.0.5 | |
| id: wait | |
| with: | |
| workflow: dev_build.yml | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| poll-interval: 20 | |
| Zookeeper-Pipeline: | |
| needs: Wait-for-images | |
| #uses: Netcracker/qubership-test-pipelines/.github/workflows/zookeeper.yaml@cee02b3e1a049e1c2b28f8566d4362247240fa5f #v1.1.2 | |
| uses: Netcracker/qubership-test-pipelines/.github/workflows/zookeeper.yaml@81a445840dde346a27ce09955779af4894bb0a14 #v1.2.0 | |
| with: | |
| service_branch: '${{ github.head_ref || github.ref_name }}' | |
| versions_file: '.github/versions.yaml' | |
| #pipeline_branch: 'cee02b3e1a049e1c2b28f8566d4362247240fa5f' #this value must match the value after '@' in 'uses' | |
| pipeline_branch: '81a445840dde346a27ce09955779af4894bb0a14' #this value must match the value after '@' in 'uses' | |
| secrets: | |
| AWS_S3_ACCESS_KEY_ID: ${{secrets.AWS_S3_ACCESS_KEY_ID}} | |
| AWS_S3_ACCESS_KEY_SECRET: ${{secrets.AWS_S3_ACCESS_KEY_SECRET}} |