CI: Remove mailing list notification
[releng/global-jjb.git] / .github / workflows / release.yaml
index 774c53c..683ac84 100644 (file)
@@ -18,33 +18,14 @@ 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: global-jjb ${{ steps.tag.outputs.tag }} released
-          to: lf-releng@lists.linuxfoundation.org
-          from: ${{ vars.MAIL_FROM }}
-          body: |
-            Hi Everyone,
-
-            global-jjb ${{ 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/global-jjb/en/stable/release-notes.html#${{ env.ANCHOR }}
-
-            Cheers,
-            LF Releng
       - name: Configure Python
-        uses: actions/setup-python@v4
+        uses: actions/setup-python@v5
         with:
           python-version: "3.8"
       - 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