-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from Aditya-150/main
feat: Github Workflow for pr and issue message
- Loading branch information
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: Auto message for Pull Requests and Issue | ||
on: [pull_request, issues] | ||
jobs: | ||
build: | ||
name: Hello new contributor | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/first-interaction@v1 | ||
with: | ||
repo-token: ${{ secrets.WORKFLOW_TOKEN }} | ||
issues-message: " Thanks!!🙂 for creating an issue. Please describe your issue. And head on to `Discussion` tab to discuss about it." | ||
pr-message: "Hello👋 Contributor, thanks for making a pull request.<br>It will be reviewed by the maintainers soon.<br>You can ask any doubts here under the pull request or ask it in `Discussions` section. Please follow the `CONTRIBUTIONS GUIDLINES` which you can find `README.md` file of each folder. <br>Till then keep contributing. <br>Happy Coding🙂" |