You Contribute, You Rock! (gh-action hackathon - WEEK 1)

theshubham99

Prathamesh Sahasrabhojane ✔️

Posted on August 18, 2020

You Contribute, You Rock! (gh-action hackathon - WEEK 1)

Hey there folks 👋

This is a summary of my last week that I spent on github actions.
I am developing a Contributor Appreciator Action called YouRock.

What It'll do?

  1. It'll send out a personalized email to contributors with some personalized Image Processed material with #️⃣open-cv

  2. Also, It'll consist of some Badges that contributors can showcase on their social media.

Aim and Impact

This action will help #️⃣ maintainers to improve the outreach and Public Relations.

Stack

  1. Github Actions running on ubuntu
  2. Python
  3. open-cv
  4. Pillow
  5. GraphQL

Work done :

  1. Process the GrphQL query to find the user's avatar and email in actions.
  2. Send out an email.

Simple Email sent from action

Code -

- uses: octokit/graphql-action@v2.x
        id: start_sending
        with:
          query: |
            query send($login:String!){
              user(login:$login){
                  login
                  avatarUrl
                  email
                }
              }
          login: ${{ github.actor }}
Enter fullscreen mode Exit fullscreen mode

Run Python Script

- name: Send Email
        run: |
          python ./Rock.py '${{steps.start_sending.outputs.data}}' '${{github.repository}}'
Enter fullscreen mode Exit fullscreen mode

Repository - https://github.com/TheShubham99/YouRock/

💖 💪 🙅 🚩
theshubham99
Prathamesh Sahasrabhojane ✔️

Posted on August 18, 2020

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

Label automation at your fingertips
actionshackathon21 Label automation at your fingertips

December 8, 2021

Releasing the funniest GitHub Action & Workflow
actionshackathon21 Releasing the funniest GitHub Action & Workflow

December 9, 2021

The Gatsby Changelog Prototype
actionshackathon21 The Gatsby Changelog Prototype

December 7, 2021