Improve the UI of the Help page #21
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: Contributor Interaction | |
on: | |
issues: | |
types: [opened] | |
pull_request_target: | |
types: [opened] | |
permissions: | |
issues: write # Define permissions for issues | |
pull-requests: write # Define permissions for pull requests | |
jobs: | |
greet_contributors: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: EddieHubCommunity/gh-action-community/src/welcome@main | |
if: ${{ github.event.sender.login != github.repository_owner }} | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
issue-message: | | |
### Hey @${{ github.actor }} 😃, | |
Thank you for raising an issue. Soon, the owner/maintainers will review it and offer feedback/suggestions. | |
Meanwhile if you enjoy contributing to the project, please consider giving it a star ⭐. | |
pr-message: | | |
### Good work @${{ github.actor }} 😃, | |
Thank you for raising the PR. Soon, the owner/maintainers will review it and offer feedback/suggestions. | |
Meanwhile if you enjoy contributing to the project, please consider giving it a star ⭐. |