Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/protontypes/awesome-twitter-action
Keep readers up to date on new entries to your awesome list.
https://github.com/protontypes/awesome-twitter-action
List: awesome-twitter-action
actions awesome awesome-list twitter
Last synced: 16 days ago
JSON representation
Keep readers up to date on new entries to your awesome list.
- Host: GitHub
- URL: https://github.com/protontypes/awesome-twitter-action
- Owner: protontypes
- License: mit
- Created: 2020-12-10T11:27:05.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-15T13:31:41.000Z (almost 4 years ago)
- Last Synced: 2024-04-14T09:03:59.960Z (7 months ago)
- Topics: actions, awesome, awesome-list, twitter
- Homepage:
- Size: 79.1 KB
- Stars: 8
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Awesome Twitter Action
An GitHub Action that tweets new entries on awesome lists. The goal of this project is to inform readers about new projects on an awesome list in an easy way.
Contributors also have a better way to advertise new projects via the awesome list and can create custom tweet messages.## Implementation
Check if the last commit message on the main branch contains `https` and creates a tweet based on the corresponding line.[![](https://img.shields.io/twitter/follow/protontypes?style=social)](https://twitter.com/protontypes) [![](https://img.shields.io/twitter/follow/GHAction1?style=social)](https://twitter.com/GHAction1)
## Usage
1. Add the Github Action Script to .github/workflows/tweet.yml
2. Create a Twitter [Developer Account](https://developer.twitter.com/en).
3. Add the Login data to your project secrets.
4. Activate your Github Actions by pressing the Activate GitHub Action for this Projects button on the Action Tab of your project.
5. Create a Commit message with an URL. Since the title of a pull request is included in the commit message, contributors can create user-specific Twitter messages.## Github Action
```
name: Send URLs from Commit Message as Tweets
on:
push:
branches:
- main
jobs:
tweet:
runs-on: ubuntu-latest
if: "contains(github.event.head_commit.message, 'https')"
steps:
- name: Extract Line with URL as Tweet Message
env:
default_hashtags: " #opensource #protontypes"
run: |
echo -e "${{ github.event.head_commit.message }}" >> tweet
tweet_message="$(cat tweet | grep -m 1 https*)"$default_hashtags
echo "tweet_message=$tweet_message" >> $GITHUB_ENV
- name: Send Tweet
uses: ethomson/send-tweet-action@v1
with:
status: ${{ env.tweet_message }}
consumer-key: ${{ secrets.TWITTER_CONSUMER_API_KEY }}
consumer-secret: ${{ secrets.TWITTER_CONSUMER_API_SECRET }}
access-token: ${{ secrets.TWITTER_ACCESS_TOKEN }}
access-token-secret: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }}
```