-
-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (26 loc) · 1.09 KB
/
tweet-release.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
name: Tweet on Release
# yamllint disable rule:line-length
# yamllint disable-line rule:truthy
on:
workflow_dispatch:
release:
types: [published]
jobs:
twitter:
name: 🐦 Tweet the release
runs-on: ubuntu-latest
steps:
- uses: Eomm/why-don-t-you-tweet@v2
with:
# GitHub event payload
# https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#release
tweet-message: |
⬆️ ${{ github.event.release.tag_name }} of ${{ github.event.repository.name }} just released 🎉 #release #nipkaart #python #project #opendata
Check out the release notes here: ${{ github.event.release.html_url }}
env:
# Get your tokens from https://developer.twitter.com/apps
TWITTER_CONSUMER_API_KEY: ${{ secrets.TWITTER_CONSUMER_API_KEY }}
TWITTER_CONSUMER_API_SECRET: ${{ secrets.TWITTER_CONSUMER_API_SECRET }}
TWITTER_ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }}
TWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}