From a9d94a431f2b5449524ce1fa19120b1818e26e06 Mon Sep 17 00:00:00 2001 From: "Calvin A. Allen" Date: Wed, 21 Jan 2026 15:12:58 -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 | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 87004e3..a1ac901 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -112,3 +112,20 @@ jobs: BLUESKY_USERNAME: ${{ secrets.BLUESKY_USERNAME }} BLUESKY_APP_PASSWORD: ${{ secrets.BLUESKY_APP_PASSWORD }} + notify-x: + needs: [release] + if: ${{ !contains(github.ref_name, '-') }} + uses: CodingWithCalvin/.github/.github/workflows/x-post.yml@main + with: + post_text: | + 🚀 Visual Studio Toolbox v${{ needs.release.outputs.version }} released! + + Visual Studio Toolbox is a sleek system tray application for Windows that helps you manage all your Visual Studio installations in one place. + + Check out the release notes here: https://github.com/${{ github.repository }}/releases/tag/${{ github.ref_name }} + 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 }} +