From 988da03db5e2410b06e1ddf7910c220450d9bff9 Mon Sep 17 00:00:00 2001 From: "Calvin A. Allen" Date: Wed, 21 Jan 2026 15:11:39 -0500 Subject: [PATCH] feat(social): add X posting on release Add notify-x job to post releases to X alongside BlueSky. --- .github/workflows/release.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5c03a1e..63af33c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -377,3 +377,21 @@ jobs: BLUESKY_USERNAME: ${{ secrets.BLUESKY_USERNAME }} BLUESKY_APP_PASSWORD: ${{ secrets.BLUESKY_APP_PASSWORD }} + notify-x: + name: Post to X + needs: notify-discussion + uses: CodingWithCalvin/.github/.github/workflows/x-post.yml@main + with: + post_text: | + 🚀 #dtvem v${{ github.event.inputs.version }} is now available! + + Cross-platform version manager for #Node, #Python, and #Ruby - supports #Windows, #Linux, and #macOS + + Release Notes: https://github.com/${{ github.repository }}/releases/tag/v${{ github.event.inputs.version }} + Discussion: ${{ needs.notify-discussion.outputs.discussion_url }} + secrets: + X_CONSUMER_KEY: ${{ secrets.X_CONSUMER_KEY }} + X_CONSUMER_KEY_SECRET: ${{ secrets.X_CONSUMER_KEY_SECRET }} + X_ACCESS_TOKEN: ${{ secrets.X_ACCESS_TOKEN }} + X_ACCESS_TOKEN_SECRET: ${{ secrets.X_ACCESS_TOKEN_SECRET }} +