From 4956f6216bd6b18d3460fd52ca371ba07dd4acb5 Mon Sep 17 00:00:00 2001 From: Aditya Prasad Mohanty Date: Tue, 4 Oct 2022 11:31:15 +0530 Subject: [PATCH] feat: Github Workflow for pr ans issue message --- .github/workflows/hello-to-news-contributions.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/hello-to-news-contributions.yml diff --git a/.github/workflows/hello-to-news-contributions.yml b/.github/workflows/hello-to-news-contributions.yml new file mode 100644 index 0000000..6a9bb3e --- /dev/null +++ b/.github/workflows/hello-to-news-contributions.yml @@ -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.
It will be reviewed by the maintainers soon.
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.
Till then keep contributing.
Happy Coding🙂"