We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0430e3 commit 19bf98eCopy full SHA for 19bf98e
1 file changed
.github/workflows/post-release-to-x.yml
@@ -0,0 +1,22 @@
1
+name: Post Release to X
2
+
3
+on:
4
+ release:
5
+ types: [published]
6
+ workflow_dispatch:
7
8
+jobs:
9
+ notify:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Tweet new release
13
+ uses: nearform-actions/github-action-notify-twitter@v1
14
+ with:
15
+ message: |
16
+ Evolution SDK ${{ github.event.release.tag_name }} out now
17
+ ${{ github.event.release.html_url }}
18
+ Happy building! 🛠️
19
+ twitter-app-key: ${{ secrets.TWITTER_API_KEY }}
20
+ twitter-app-secret: ${{ secrets.TWITTER_API_SECRET }}
21
+ twitter-access-token: ${{ secrets.TWITTER_ACCESS_TOKEN }}
22
+ twitter-access-token-secret: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}
0 commit comments