My-Personal-Journal Completed #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: New Contributor Welcome | |
permissions: | |
actions: write | |
checks: write | |
contents: write | |
issues: write | |
pull-requests: write | |
on: | |
pull_request: | |
types: [opened, closed] | |
issues: | |
types: [opened] | |
jobs: | |
greet_new_contributor: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: bubkoo/welcome-action@v1 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
FIRST_ISSUE_REACTIONS: "+1, hooray, rocket, heart" | |
FIRST_ISSUE: > | |
👋 Greetings @{{ author }}! | |
We're thrilled to see you opening your first issue! Your input is invaluable to us. Don’t forget to adhere to our issue template for the best experience. | |
FIRST_PR: > | |
👋 Welcome aboard, @{{ author }}! | |
We're delighted to have your first pull request! Please take a moment to check our contributing guidelines to ensure a smooth process. | |
FIRST_PR_MERGED: > | |
🎉 Kudos @{{ author }}! | |
You've just merged your first pull request! We're excited to have you in our community. Keep up the fantastic contributions! | |
STAR_MESSAGE: If you enjoy this project, please consider ⭐ starring ⭐ this repository! | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |