mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-05-22 10:15:43 +02:00
10 lines
247 B
Bash
Executable File
10 lines
247 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Preview the release notes that would be generated if we were to create a
|
|
# release now.
|
|
|
|
gh api -X POST /repos/jesseduffield/lazygit/releases/generate-notes \
|
|
-f tag_name=v0.99.0 \
|
|
-f target_commitish=master \
|
|
-q .body | code -
|