We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fe9bb9 commit 6878e5fCopy full SHA for 6878e5f
.github/workflows/tweet.yml
@@ -0,0 +1,23 @@
1
+name: tweet
2
+on:
3
+ push:
4
+ tags:
5
+ - '*'
6
+ release:
7
+ types: [ published ]
8
+
9
+jobs:
10
+ tweet:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Tweet
14
+ uses: snow-actions/tweet@v1
15
+ with:
16
+ status: |
17
+ We are proud to announce that ${{ github.repository }} · ${{ github.event.release.name }}
18
+ ${{ github.event.release.html_url }} is now released 🚀. #jwt #jwe #jws #jwk #jwa #php #symfony
19
+ env:
20
+ CONSUMER_API_KEY: ${{ secrets.TWITTER_CONSUMER_API_KEY }}
21
+ CONSUMER_API_SECRET_KEY: ${{ secrets.TWITTER_CONSUMER_API_SECRET }}
22
+ ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }}
23
+ ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}
0 commit comments