We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7f4f15 commit c04a525Copy full SHA for c04a525
.github/workflows/boil_release.yaml
@@ -14,9 +14,23 @@ jobs:
14
name: Create Draft Release
15
runs-on: ubuntu-latest
16
steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
19
+ with:
20
+ persist-credentials: false
21
+ fetch-depth: 0
22
+
23
+ - name: Generate Changelog
24
+ id: changelog
25
+ uses: orhun/git-cliff-action@d77b37db2e3f7398432d34b72a12aa3e2ba87e51 # v4.6.0
26
27
+ config: rust/boil/cliff.toml
28
+ args: --latest --strip header
29
30
- name: Create Draft Release
31
uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2.3.2
32
with:
33
+ body: ${{ steps.changelog.outputs.content }}
34
draft: true
35
36
build:
0 commit comments