How to Receive GitHub notifications on Twitter

Author:vanus 2023-04-17 17:14:45 78 0 0

blog image

As a GitHub and OSS enthusiast, have you ever experienced missing some of your important GitHub emails because tons of unread emails waiting in your mailbox . Or you wanna receive a custom notification when someone stars your repo but GitHub can never send such notifications to you.

Now, problem solved! You can receive custom event notifications directly in your Twitter account without checking your email by using a Serverless Message Queue — Vanus.

github.png

To achieve that we need one program to receive GitHub events and transform them into custom notifications we want and another Program to receive transformed notifications and send them to our Twitter account.

Luckily, Vanus has already provided many out-of-the-box Connectors that enable you to integrate with popular services or applications without writing any codes.

Here is how we can do this within 5 mins.

  1. Go to Vanus Playground (an online K8s playground)

  2. Click “Launch Terminal” to prepare an interactive K8s environment(Use your GitHub account to sign in). img.png

  3. Wait for preparing the K8s environment (usually less than 1 min). The terminal is ready when you see something like this:

img_1.png

  1. Install Vanus

kubectl apply -f https://vanus.s3.us-west-2.amazonaws.com/releases/v0.4.0/vanus.yaml
  1. Install vsctl (the command line tool)

curl -O https://vsctl.s3.us-west-2.amazonaws.com/releases/v0.4.0/linux-amd64/vsctlchmod ug+x vsctlmv vsctl /usr/local/bin
  1. Set the endpoint for vsctl

export VANUS_GATEWAY=192.168.49.2:30001
  1. Click the “GitHub-Twitter Scenario”

img_2.png

  1. Create an Eventbus to store your events

vsctl eventbus create --name github-twitter-scenario
  1. Run the GitHub Source

cd ~/github-twitter-scenariodocker run --network=host -v $(pwd)/config.json:/vance/config/config.json  --rm vancehub/source-github > a.log &
  1. Go to your repository and create a Webhook

img_3.png

  1. Follow the tutorial to set the configuration for your webhook.

img_4.png

img_5.png

  1. Click the button “Enter your Twitter Username” to specify your Twitter account.

img_6.png

  1. Copy and execute commands to create two subscriptions. Remember to check if the command contains your Twitter username.

img_7.png

img_8.png

  1. Follow Twitter account <@VanusNotify>, so VanusNotify service can send DM to you.

img_9.png

  1. Finally, star your repository and check your Twitter messages, it should be a message like:

img_10.png

  1. Open an issue in your repository and check your Twitter messages, it should be a message like:

img_11.png

Now, you’ve successfully received GitHub notifications in your Twitter account. Actually, you can receive any outside services in anywhere with Vanus and its’ filter and transformer. Learn more about Vanus here.

Vanus is an open-source, cloud-native, Serverless message queue for building EDA applications with Ease.

Try it and have fun with Vanus, guys.


Comments   Please sign in or sign up to post.

0

0 of 500 characters used

Copyright:@2020-2021