fix: global circuit breaker name #182
Workflow file for this run
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: Build Pull Request | |
| on: | |
| pull_request: | |
| branches: | |
| - '*' | |
| jobs: | |
| build-pull-request: | |
| name: Build and Publish Pull Request | |
| runs-on: ubuntu-latest | |
| if: ${{ !contains(github.event.head_commit.message, 'ci skip') }} | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| with: | |
| # Required for axion-release to read git history | |
| fetch-depth: 0 | |
| fetch-tags: true | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: 17 | |
| distribution: 'temurin' | |
| - name: Detect modified subprojects | |
| id: detect-modified-subprojects | |
| uses: ./.github/actions/detect-modified-projects | |
| with: | |
| project_prefixes: ktor-client,ktor-server | |
| - name: Execute gradle tasks on ${{ steps.detect-modified-subprojects.outputs.modified_projects }} | |
| id: execute-gradle-tasks-on-projects | |
| uses: ./.github/actions/execute-gradle-tasks-on-projects | |
| with: | |
| projects: ${{ steps.detect-modified-subprojects.outputs.modified_projects }} | |
| tasks: clean,build | |
| execute_on_root_anyway: true | |
| env: | |
| GPR_USER: ${{ vars.GPR_USER }} | |
| GPR_READ_TOKEN: ${{ secrets.GPR_READ_TOKEN }} | |
| GPR_WRITE_TOKEN: ${{ secrets.GPR_WRITE_TOKEN }} |