Skip to content

Commit

Permalink
Add greetings workflow for pull requests
Browse files Browse the repository at this point in the history
  • Loading branch information
chimpdev committed Mar 23, 2024
1 parent bec63c4 commit 4285562
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/greetings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Greetings

on:
pull_request:
types: [opened]
branches:
- main

jobs:
greetings:
name: Greetings
runs-on: ubuntu-latest
timeout-minutes: 10
if: github.event.action == 'opened'
steps:
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GH_TOKEN }}
pr-message: |-
Hey there, Pull Request Pioneer! 🚀
A big round of applause for stepping into the ring with your very first Pull Request! Thanks a bunch for showing Ivy some love! 🎉
Just a friendly heads-up:
- We're all about keeping things cozy here, so feel free to ask questions, share ideas, and make yourself at home! 🏠
- If you're feeling lost or need a little guidance, don't hesitate to reach out. We're all in this together! 🤝

0 comments on commit 4285562

Please sign in to comment.