From 20e2c5c0581e48ec8d0e32992528e631dcd3cead Mon Sep 17 00:00:00 2001 From: solidsnakedev Date: Sat, 24 Jan 2026 15:32:08 -0700 Subject: [PATCH] add X release notification workflow --- .github/workflows/post-release-to-x.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/post-release-to-x.yml diff --git a/.github/workflows/post-release-to-x.yml b/.github/workflows/post-release-to-x.yml new file mode 100644 index 00000000..8fbf0018 --- /dev/null +++ b/.github/workflows/post-release-to-x.yml @@ -0,0 +1,22 @@ +name: Post Release to X + +on: + release: + types: [published] + workflow_dispatch: + +jobs: + notify: + runs-on: ubuntu-latest + steps: + - name: Tweet new release + uses: nearform-actions/github-action-notify-twitter@v1 + with: + message: | + Evolution SDK ${{ github.event.release.tag_name }} out now + ${{ github.event.release.html_url }} + Happy building! 🛠️ + twitter-app-key: ${{ secrets.TWITTER_API_KEY }} + twitter-app-secret: ${{ secrets.TWITTER_API_SECRET }} + twitter-access-token: ${{ secrets.TWITTER_ACCESS_TOKEN }} + twitter-access-token-secret: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}