Skip to content

StarTweet is a GitHub Action that sends a thank you tweet to users who star your GitHub repository.

License

Notifications You must be signed in to change notification settings

iisyos/star_tweet

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

StarTweet

StarTweet is a GitHub Action that sends a thank you tweet to users who star your GitHub repository.

Setup

  1. Create a Twitter Developer account and a project to obtain the necessary API keys and access tokens. here

  2. Add the following GitHub secrets to your repository:

  • CONSUMER_KEY
  • CONSUMER_SECRET
  • ACCESS_TOKEN
  • ACCESS_TOKEN_SECRET

Inputs

consumer_key

Required Twitter consumer key.

consumer_secret

Required Twitter consumer secret.

access_token

Required Twitter access token

access_token_secret

Required twitter access token secret

text

Option This is tweet description. Default value is below.

🌟 Thank you for starring our repository! We appreciate your support and will continue to deliver great content! 😃 #GitHub #Star

Usage

Sample usage.

name: StarTweet

on: [watch]

jobs:
  tweet:
    runs-on: ubuntu-latest
    steps:
    - name: Send tweet
      uses: iisyos/[email protected]
      with:
          consumer_key: ${{ secrets.CONSUMER_KEY }}
          consumer_secret: ${{ secrets.CONSUMER_SECRET }}
          access_token: ${{ secrets.ACCESS_TOKEN }}
          access_token_secret: ${{ secrets.ACCESS_TOKEN_SECRET }}
          text: "🌟 Thank you for starring our repository! We appreciate your support and will continue to deliver great content! 😃 #GitHub #Star" # option

License

MIT

About

StarTweet is a GitHub Action that sends a thank you tweet to users who star your GitHub repository.

Resources

License

Stars

Watchers

Forks

Packages

No packages published