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: Create comment | |
on: | |
issues: | |
types: [ opened ] | |
permissions: | |
contents: read | |
jobs: | |
label-component: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: Create comment | |
uses: peter-evans/create-or-update-comment@v4 | |
with: | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
Hey @${{ github.actor }}! | |
Thanks for contributing to the SuiteCRM project :sparkles: | |
> **Remember to support your issue by voting!** | |
Get more information [here](https://docs.suitecrm.com/community/raising-issues/issues-voting/) | |
reactions: '+1' |