[devtools] sync

This commit is contained in:
dry-bot 2021-01-03 11:03:44 +00:00
parent 361afe19d0
commit 1bf10e3cf0
2 changed files with 37 additions and 1 deletions

View File

@ -0,0 +1,36 @@
<!--- DO NOT EDIT THIS FILE - IT'S AUTOMATICALLY GENERATED VIA DEVTOOLS --->
<% if latest_release.summary %>
<%= latest_release.summary %>
<% end %>
<% if latest_release.added? %>
### Added
<% latest_release.added.each do |log| %>
- <%= log %>
<% end %>
<% end %>
<% if latest_release.fixed? %>
### Fixed
<% latest_release.fixed.each do |log| %>
- <%= log %>
<% end %>
<% end %>
<% if latest_release.changed? %>
### Changed
<% latest_release.changed.each do |log| %>
- <%= log %>
<% end %>
<% end %>
<% if previous_release %>
<% ver_range = "v#{previous_release.version}...v#{latest_release.version}" %>
[Compare <%=ver_range%>](https://github.com/dry-rb/<%= project.name %>/compare/<%=ver_range%>)
<% end %>

View File

@ -80,4 +80,4 @@ jobs:
- name: Trigger release workflow
run: |
tag=$(echo $GITHUB_REF | cut -d / -f 3)
ossy gh w dry-rb/devtools release --payload "{\"tag\":\"$tag\",\"tag_creator\":\"$GITHUB_ACTOR\",\"repo\":\"$GITHUB_REPOSITORY\"}"
ossy gh w dry-rb/devtools release --payload "{\"tag\":\"$tag\",\"sha\":\"${{github.sha}}\",\"tag_creator\":\"$GITHUB_ACTOR\",\"repo\":\"$GITHUB_REPOSITORY\",\"repo_name\":\"${{github.event.repository.name}}\"}"