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 075aa05 commit c532324Copy full SHA for c532324
.github/workflows/announcement.yml
@@ -16,8 +16,8 @@ jobs:
16
run: |
17
echo "${{ github.event.pull_request.body }}" > pr_body.md
18
19
- # Extract lines from "# Releases" onward
20
- awk '/^# Releases/ {found=1} found' pr_body.md > release_notes.txt
+ # Extract lines AFTER "# Releases"
+ awk '/^# Releases/ {found=1; next} found' pr_body.md > release_notes.txt
21
22
# Escape characters for Telegram MarkdownV2
23
sed -e 's/\([_*\[\]()~`>#+\-=|{}.!]\)/\\\1/g' release_notes.txt > sanitized_notes.txt
@@ -42,5 +42,3 @@ jobs:
42
43
📦 *Release Notes:*
44
```
45
- ${{ env.RELEASE_NOTES }}
46
- ```
0 commit comments