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
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
About
warm-welcome-action
is a very simple GitHub Action I made to learn the basics of how actions work
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 ๐
Discussion (2)
Great idea :)
Thanks! :D