Update tapir-apispec-docs, tapir-core, ... to 1.13.0 (#69) #174
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: CI | |
| on: | |
| pull_request: | |
| branches: ['**'] | |
| push: | |
| branches: ['**'] | |
| tags: [v*] | |
| permissions: | |
| contents: write # release-drafter, auto-merge requirement | |
| pull-requests: write # labeler, auto-merge requirement | |
| jobs: | |
| build: | |
| uses: softwaremill/github-actions-workflows/.github/workflows/build-scala.yml@main | |
| # run on 1) push, 2) external PRs, 3) softwaremill-cisoftwaremill-ci PRs | |
| # do not run on internal, non-steward PRs since those will be run by push to branch | |
| if: | | |
| github.event_name == 'push' || | |
| github.event.pull_request.head.repo.full_name != github.repository || | |
| github.event.pull_request.user.login == 'softwaremill-cisoftwaremill-ci' | |
| with: | |
| java-opts: '-Xmx4G' | |
| publish: | |
| uses: softwaremill/github-actions-workflows/.github/workflows/publish-release.yml@main | |
| needs: [build] | |
| if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v')) | |
| secrets: inherit | |
| with: | |
| java-opts: "-Xmx4G" | |
| sttp-native: 1 | |
| label: | |
| # only for PRs by softwaremill-cisoftwaremill-ci | |
| if: github.event.pull_request.user.login == 'softwaremill-cisoftwaremill-ci' | |
| uses: softwaremill/github-actions-workflows/.github/workflows/label.yml@main | |
| secrets: inherit | |
| auto-merge: | |
| # only for PRs by softwaremill-cisoftwaremill-ci | |
| if: github.event.pull_request.user.login == 'softwaremill-cisoftwaremill-ci' | |
| needs: [ build, label ] | |
| uses: softwaremill/github-actions-workflows/.github/workflows/auto-merge.yml@main | |
| secrets: inherit |