iisyos / star_tweet

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

Home Page:https://github.com/marketplace/actions/star-tweet

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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/star_tweet@v1.0
      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.

https://github.com/marketplace/actions/star-tweet

License:MIT License


Languages

Language:TypeScript 94.5%Language:JavaScript 5.5%