Greetings Action

A GitHub Actions workflow to greet contributors

name: Greetings

on: [pull_request_target, issues]

jobs:
  welcome:
      runs-on: ubuntu-latest
      steps:
        - uses: actions/checkout@v3
        - uses: EddieHubCommunity/gh-action-community/src/welcome@main
          with:
            github-token: ${{ secrets.GITHUB_TOKEN }}
            issue-message: '<h3>Hello ๐Ÿ‘‹! Thank you very much for raising an issue ๐Ÿ™Œ! The maintainers will get back to you soon for discussion over the issue! ๐Ÿš€</h3>'
            pr-message: '<h3>Yeah! You did it ๐ŸŽ‰ Now, Relax ๐Ÿ˜‰, Grab a drink โ˜•, and wait for the maintainers to check your contributions. Meanwhile, you can discuss on other issues and solve them ๐Ÿ˜€. Thank You ๐Ÿ˜ƒ!</h3>'
            footer: 'Meanwhile you can also discuss about the project in our <a href="https://discord.gg/DeT4jXPfkG">Discord Server</a> ๐Ÿ˜€</h3>'

Last updated

Was this helpful?