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 f96aca4 commit 92714a4Copy full SHA for 92714a4
.github/workflows/create-release.yml
@@ -31,14 +31,10 @@ jobs:
31
# Find the first changelog section (skip the title)
32
# This grabs content from the first ## heading until the next ## heading
33
awk '
34
- BEGIN { found=0; skip_first=1 }
+ BEGIN { found=0 }
35
/^## / {
36
if (found) exit
37
- if (!skip_first) {
38
- found=1
39
- next
40
- }
41
- skip_first=0
+ found=1
42
next
43
}
44
found {print}
0 commit comments