Introduce SYSTEM_SKIP_MERGE_COMMIT_FROM_PR to support Docker build with AZDO pipeline #10
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 API Image Push | ||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
| paths: | ||
| - integration-tests/test-api/** | ||
| permissions: | ||
| content: read | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
| cancel-in-progress: true | ||
| jobs: | ||
| push: | ||
| name: Push API Test | ||
| if: github.repository_owner == 'codecov' | ||
| uses: codecov/gha-workflows/.github/workflows/[email protected] | ||
| secrets: inherit | ||
| with: | ||
| push: true | ||
| image_name: codecov-javascript-bundler-plugins-test-api | ||
| docker_path: integration-tests/test-api | ||