Skip to content

Commit

Permalink
ci: update WELCOME-NEW-USERS workflow from global .github repo
Browse files Browse the repository at this point in the history
Signed-off-by: microcks-bot <[email protected]>
  • Loading branch information
microcks-bot committed Nov 4, 2024
1 parent 969d377 commit feb7f92
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions .github/workflows/welcome-new-users.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# Welcome new users by commenting on the first-time issue/PR.
# Adding a friendly message in the comment to tip non-stargazers to star our repo.
#
# Props to https://github.com/wow-actions/welcome

name: Welcome New Users with Thanks and Tip non-stargazers ;-)
on:
pull_request_target:
types: [opened, closed]
issues:
types: [opened]
jobs:
run:
# Do not run on bots and maintainers
if: ${{ !contains(fromJson('["dependabot[bot]", "dependabot-preview[bot]", "allcontributors[bot]"]'), github.actor) }}
runs-on: ubuntu-latest
steps:
- uses: wow-actions/welcome@68019c2c271561f63162fea75bb7707ef8a02c85 # To pin v1.3.1
with:
# GitHub token as default GITHUB_TOKEN

FIRST_ISSUE_REACTIONS: '+1, hooray, rocket, heart'

FIRST_ISSUE: |
πŸ‘‹ @{{ author }}
Welcome to the Microcks community! πŸ’–
Thanks and congrats πŸŽ‰ for opening your first issue here! Be sure to follow the issue template or please update it accordingly.
πŸ“’ If you're using Microcks in your organization, please [add your company name to this list](https://github.com/microcks/.github/blob/main/ADOPTERS.md). πŸ™ It really helps the project to gain momentum and credibility. It's a small contribution back to the project with a big impact.
If you need to know why and how to add yourself to the list, please read the blog post ["Join the Microcks Adopters list and Empower the vibrant open source Community πŸ™Œ"](https://microcks.io/blog/join-adopters-list/)
Hope you have a great time there!
FIRST_PR_REACTIONS: '+1, hooray, rocket, heart'

FIRST_PR: |
πŸ‘‹ @{{ author }}
Welcome to the Microcks community! πŸ’–
Thanks and congrats πŸŽ‰ for opening your first pull request here! Be sure to follow the pull request template or please update it accordingly.
Hope you have a great time there!
FIRST_PR_MERGED: |
πŸŽ‰ @{{ author }}
You are now a Microcks community contributor! πŸ’–
Thanks and congrats πŸš€ on merging your first pull request! We are delighted and very proud of you! πŸ‘
πŸ“’ If you're using Microcks in your organization, please [add your company name to this list](https://github.com/microcks/.github/blob/main/ADOPTERS.md). πŸ™ It really helps the project to gain momentum and credibility. It's a small contribution back to the project with a big impact.
If you need to know why and how to add yourself to the list, please read the blog post ["Join the Microcks Adopters list and Empower the vibrant open source Community πŸ™Œ"](https://microcks.io/blog/join-adopters-list/)
Kudos and please keep going, we need you πŸ™Œ
STAR_MESSAGE: |
🌟 ~~~~~~~~~ 🌟
πŸ“’ If you like Microcks, please ⭐ star ⭐ our repo to support it!
πŸ™ It really helps the project to gain momentum and credibility. It's a small contribution back to the project with a big impact.

0 comments on commit feb7f92

Please sign in to comment.