-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The [email protected] mailing list is going away. This adds in GitHub releases and configures reno to limit the furthest back it needs to look for generating notes. Issue: RELENG-4931 Signed-off-by: Andrew Grimberg <[email protected]> Signed-off-by: Anil Belur <[email protected]> Change-Id: I6c3c09a5c99f8d77aa5d7889b86fcde557f64f32
- Loading branch information
Showing
4 changed files
with
38 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,24 +32,27 @@ jobs: | |
run: >- | ||
VER=$(echo "${{ steps.tag.outputs.tag }}" | tr . -) | ||
echo "ANCHOR=${VER}" >> $GITHUB_ENV | ||
- name: Notify mailing list | ||
uses: dawidd6/action-send-mail@v3 | ||
with: | ||
server_address: ${{ vars.MAIL_SERVER }} | ||
server_port: ${{ vars.MAIL_SERVER_PORT }} | ||
secure: true | ||
username: ${{ secrets.MAIL_USER }} | ||
password: ${{ secrets.MAIL_PASSWORD }} | ||
subject: lfdocs-conf ${{ steps.tag.outputs.tag }} released | ||
to: [email protected] | ||
from: LF Releng <[email protected]> | ||
body: | | ||
Hi Everyone, | ||
docs-conf ${{ steps.tag.outputs.tag }} is released. Thanks to everyone who contributed | ||
to this release. Release notes are avaiable online at: | ||
https://docs.releng.linuxfoundation.org/projects/lfdocs-conf/en/stable/release-notes.html#${{ env.ANCHOR }} | ||
Cheers, | ||
LF Releng | ||
- name: Generate reno report | ||
run: | | ||
# fetch last 30 changes | ||
git fetch --depth=30 | ||
pipx run tox -e reno -- report \ | ||
--version "${{ steps.tag.outputs.tag }}" \ | ||
2>/dev/null > reno-notes.md || true | ||
if grep -q 'reno: FAIL' reno-notes.md | ||
then | ||
touch modified-reno-notes.md | ||
else | ||
sed '/^\.pkg.*$/d' reno-notes.md | | ||
sed '/^reno:.*$/d' | | ||
sed '/^\.\. .*$/d' | | ||
sed '$d' | | ||
sed '$d' | | ||
sed '1d' > modified-reno-notes.md | ||
fi | ||
- name: Create Release Notes | ||
run: | | ||
gh release create ${{ steps.tag.outputs.tag }} --generate-notes \ | ||
-F modified-reno-notes.md | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
--- | ||
earliest_version: v0.7.0 |