Skip to content
Merged

Dev #11

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,17 +85,14 @@ jobs:
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ steps.calculate_version.outputs.new_version }}

# Более осмысленное имя релиза
name: >-
${{ github.event.pull_request.head.ref }} →
${{ github.event.pull_request.base.ref }} –
${{ steps.calculate_version.outputs.new_version }}
(${{ github.event.pull_request.commits }} commits)
# Имя релиза в классическом формате
name: Release ${{ steps.calculate_version.outputs.new_version }}

body: |
## Changes in this Release

${{ github.event.pull_request.head.ref }} → ${{ github.event.pull_request.base.ref }} – ${{ steps.calculate_version.outputs.new_version }} (${{ github.event.pull_request.commits }} commits)

Merged from `${{ github.event.pull_request.head.ref }}` to `${{ github.event.pull_request.base.ref }}`
via PR #${{ github.event.pull_request.number }}

Expand Down