From f466e84f658dc087d791feaf0b4ef7fcf8c573c3 Mon Sep 17 00:00:00 2001 From: "Calvin A. Allen" Date: Thu, 26 Feb 2026 10:47:26 -0500 Subject: [PATCH] ci(workflow): remove social media posting from release workflow --- .github/workflows/release.yml | 40 ----------------------------------- 1 file changed, 40 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ed8e445..514306d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -331,43 +331,3 @@ jobs: [View Release](https://github.com/${{ github.repository }}/releases/tag/v${{ github.event.inputs.version }}) | [Documentation](https://github.com/${{ github.repository }}) - notify-bluesky: - name: Post to Bluesky - needs: notify-discussion - uses: CodingWithCalvin/.github/.github/workflows/bluesky-post.yml@main - with: - post_text: | - rnr v${{ github.event.inputs.version }} is now available! - - Cross-platform task runner with zero setup - clone a repo and tasks just work! - - #rnr #taskrunner #devtools #rust #opensource - - [Release Notes](https://github.com/${{ github.repository }}/releases/tag/v${{ github.event.inputs.version }}) - [Discussion](${{ needs.notify-discussion.outputs.discussion_url }}) - embed_title: rnr v${{ github.event.inputs.version }} - embed_description: Cross-platform task runner with zero setup - secrets: - 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: | - rnr v${{ github.event.inputs.version }} is now available! - - Cross-platform task runner with zero setup - clone a repo and tasks just work! - - #rnr #taskrunner #devtools #rust #opensource - - 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 }} -