|
| 1 | +# Welcome new users by commenting on the first-time issue/PR. |
| 2 | +# Adding a friendly message in the comment to tip non-stargazers to star our repo. |
| 3 | +# |
| 4 | +# Props to https://github.com/wow-actions/welcome |
| 5 | + |
| 6 | +name: Welcome New Users with Thanks and Tip non-stargazers ;-) |
| 7 | +on: |
| 8 | + pull_request_target: |
| 9 | + types: [opened, closed] |
| 10 | + issues: |
| 11 | + types: [opened] |
| 12 | +jobs: |
| 13 | + run: |
| 14 | + # Do not run on bots and maintainers |
| 15 | + if: ${{ !contains(fromJson('["dependabot[bot]", "dependabot-preview[bot]", "allcontributors[bot]"]'), github.actor) }} |
| 16 | + runs-on: ubuntu-latest |
| 17 | + steps: |
| 18 | + - uses: wow-actions/welcome@68019c2c271561f63162fea75bb7707ef8a02c85 # To pin v1.3.1 |
| 19 | + with: |
| 20 | + # GitHub token as default GITHUB_TOKEN |
| 21 | + |
| 22 | + FIRST_ISSUE_REACTIONS: '+1, hooray, rocket, heart' |
| 23 | + |
| 24 | + FIRST_ISSUE: | |
| 25 | + 👋 @{{ author }} |
| 26 | + |
| 27 | + Welcome to the Microcks community! 💖 |
| 28 | + |
| 29 | + Thanks and congrats 🎉 for opening your first issue here! Be sure to follow the issue template or please update it accordingly. |
| 30 | + |
| 31 | + 📢 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. |
| 32 | + |
| 33 | + 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/) |
| 34 | + |
| 35 | + Hope you have a great time there! |
| 36 | + |
| 37 | + FIRST_PR_REACTIONS: '+1, hooray, rocket, heart' |
| 38 | + |
| 39 | + FIRST_PR: | |
| 40 | + 👋 @{{ author }} |
| 41 | + |
| 42 | + Welcome to the Microcks community! 💖 |
| 43 | + |
| 44 | + Thanks and congrats 🎉 for opening your first pull request here! Be sure to follow the pull request template or please update it accordingly. |
| 45 | + |
| 46 | + Hope you have a great time there! |
| 47 | + |
| 48 | + FIRST_PR_MERGED: | |
| 49 | + 🎉 @{{ author }} |
| 50 | + |
| 51 | + You are now a Microcks community contributor! 💖 |
| 52 | + |
| 53 | + Thanks and congrats 🚀 on merging your first pull request! We are delighted and very proud of you! 👏 |
| 54 | + |
| 55 | + 📢 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. |
| 56 | + |
| 57 | + 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/) |
| 58 | + |
| 59 | + Kudos and please keep going, we need you 🙌 |
| 60 | + |
| 61 | + STAR_MESSAGE: | |
| 62 | + 🌟 ~~~~~~~~~ 🌟 |
| 63 | +
|
| 64 | + 📢 If you like Microcks, please ⭐ star ⭐ our repo to support it! |
| 65 | + |
| 66 | + 🙏 It really helps the project to gain momentum and credibility. It's a small contribution back to the project with a big impact. |
| 67 | + |
0 commit comments