DEV Community

Enrique Benitez πŸ€™
Enrique Benitez πŸ€™

Posted on

Warm Welcome Action πŸ€—

My Workflow

warm-welcome-action is a very simple GitHub Action I made to learn the basics of how actions work βš™οΈ and for the dev.to actions hackathon πŸŽ‰

What this action does is every time a user submits a new pull request on a repository with this action installed, it will post a warm welcome gif to make the person who made the PR well, welcome.

Submission Category:

Wacky Wildcards

Yaml File or Link to Code

GitHub logo bntzio / warm-welcome-action

GitHub Action to give a warm welcome on PRs πŸ’–

warm welcome action πŸ€—

GitHub Action to give a warm welcome on PRs πŸ’–

GitHub release (latest by date)

About

warm-welcome-action is a very simple GitHub Action I made to learn the basics of how actions work βš™οΈ and for the dev.to actions hackathon πŸŽ‰

What this action does is every time a user submits a new pull request on a repository with this action installed, it will post a warm welcome gif to make the person who made the PR well, welcome.

How to use

Create a .github/workflows/action.yml file in the repository you want to install this action, then add the following to it:

name: "Warm Welcome"
on
  pull_request
  issues
    types: [opened]
  push
    branches:
      - master
jobs:
  test:
    if: github.event_name == 'pull_request'
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2.0.0
    - name: grab and post gif and message
      id: 
…

Additional Resources / Info

This super simple action is my first GitHub Action published! πŸ’– I hope you all find it useful! πŸ˜„

PR's are welcome πŸ˜‰

welcome_gif

Top comments (2)

Collapse
 
maxdevjs profile image
maxdevjs

Great idea :)

Collapse
 
bntzio profile image
Enrique Benitez πŸ€™

Thanks! :D