Update plugin org.jetbrains.kotlinx.kover to v0.9.8 #397
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: Release ✈️ | |
| on: | |
| pull_request: | |
| types: [ closed ] | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| create-release: | |
| if: ${{ (github.event.pull_request.merged == true) && (contains(github.event.pull_request.labels.*.name, 'release :tada:')) }} | |
| name: Create Release | |
| runs-on: ubuntu-latest | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.AUTO_RELEASE_PAT }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Major Version Bump | |
| if: ${{ contains(github.event.*.labels.*.name, 'major :1st_place_medal:') }} | |
| run: make release BUMP=major | |
| - name: Minor Version Bump | |
| if: ${{ contains(github.event.*.labels.*.name, 'minor :2nd_place_medal:') }} | |
| run: make release BUMP=minor | |
| - name: Patch Version Bump | |
| if: ${{ contains(github.event.*.labels.*.name, 'patch :3rd_place_medal:') }} | |
| run: make release BUMP=patch |