Skip to content

Commit 6d7133b

Browse files
authored
Merge pull request #127 from hasnainmakada-99/main
Added PR template and github workflow
2 parents 6c5f0d4 + 75478b3 commit 6d7133b

2 files changed

Lines changed: 55 additions & 0 deletions

File tree

.github/pull_request_template.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Pull Request Template
2+
3+
## Fixes Issue #
4+
5+
<!-- Remove this section if not applicable -->
6+
7+
<!-- Example: Closes #31 -->
8+
9+
## Changes proposed
10+
11+
<!-- List all the proposed changes in your PR -->
12+
13+
<!-- Mark all the applicable boxes. To mark the box as done follow the following conventions -->
14+
<!--
15+
[x] - Correct; marked as done
16+
[X] - Correct; marked as done
17+
18+
[ ] - Not correct; marked as **not** done
19+
-->
20+
21+
## Check List (Check all the applicable boxes) <!-- Follow the above conventions to check the box -->
22+
23+
- [ ] My code follows the code style of this project.
24+
- [ ] My change requires changes to the documentation.
25+
- [ ] I have updated the documentation accordingly.
26+
- [ ] All new and existing tests passed.
27+
- [ ] This PR does not contain plagiarized content.
28+
- [ ] The title of my pull request is a short description of the requested changes.
29+
30+
## Screenshots
31+
32+
<!-- Add all the screenshots which support your changes -->
33+
34+
## Note to reviewers
35+
36+
<!-- Add notes to reviewers if applicable -->

.github/workflows/greetings.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
on:
2+
fork:
3+
push:
4+
branches: [main]
5+
issues:
6+
types: [opened]
7+
pull_request_target:
8+
types: [opened]
9+
10+
jobs:
11+
welcome:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v1
15+
- uses: EddieHubCommunity/gh-action-community/src/welcome@main
16+
with:
17+
github-token: ${{ secrets.GITHUB_TOKEN }}
18+
issue-message: "<h1> Hey contributor, Thanks for raising this issue. One of our maintainers of this project will soo reach out you, Till then Happy Coding :smiley:"
19+
pr-message: "<h1>Thanks for raising this PR, one of our maintainers will soon reach out to you, Till then Happy coding :smiley:"

0 commit comments

Comments
 (0)