Create feature_request.md #8
Workflow file for this run
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: First Interaction Greeting | |
on: | |
issues: | |
types: [opened] | |
pull_request: | |
types: [opened] | |
permissions: | |
issues: write | |
pull-requests: write | |
jobs: | |
greet: | |
runs-on: ubuntu-latest | |
steps: | |
- name: First Interaction | |
uses: actions/first-interaction@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
issue-message: "Hey there! 👋 Welcome to the project! We're excited to see your contribution. Feel free to ask any questions or share your ideas! 🌱" | |
pr-message: "Thanks for opening this pull request! 🎉 We appreciate your contribution. Don't hesitate to let us know if you need any help or have suggestions!" |