├── README.md ├── .github ├── ISSUE_TEMPLATE │ ├── github-profile-review.md │ ├── be-a-member.md │ ├── open-source-project-review.md │ ├── feature_request.md │ └── bug_report.md ├── workflows │ ├── label.yml │ └── greetings.yml └── FUNDING.yml └── LICENSE /README.md: -------------------------------------------------------------------------------- 1 | # join-the-community 2 | Join the DevsInTech Community via this repository. 3 | 4 | Create an issue [here](https://github.com/devs-in-tech/join-the-community/issues/new/choose). 5 | 6 | Choose the `join the community`, fill in the details and create the issue. After some time, we'll invite you to join the commmunity. 7 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/github-profile-review.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: GitHub Profile Review 3 | about: Please review my GitHub profile. If this doesn’t look right, choose a different 4 | type. 5 | title: "[PROFILE REVIEW]" 6 | labels: 'profile-review, review' 7 | assignees: '' 8 | 9 | --- 10 | 11 | ### GitHub Profile Link:- 12 | `https://github.com/` 13 | 14 | You can also join our Discord community [here](https://discord.gg/g7FmxB9uZp) 15 | Feel free to check out other cool repositories of the DevsInTech Community [here](https://github.com/devs-in-tech). 16 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/be-a-member.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Be A Member 3 | about: Add me to the organization 4 | title: "[ADD ME TO THE ORGANIZATION]" 5 | labels: join the commmunity 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Name:** 11 | **Location:** 12 | **Interest:** 13 | **Discord username(optional):-** 14 | 15 | ### Why do you want to join? 16 | > I want to join because 17 | 18 | You can also join our Discord community [here](https://discord.gg/g7FmxB9uZp) 19 | Feel free to check out other cool repositories of the DevsInTech Community [here](https://github.com/devs-in-tech). 20 | -------------------------------------------------------------------------------- /.github/workflows/label.yml: -------------------------------------------------------------------------------- 1 | # This workflow will triage pull requests and apply a label based on the 2 | # paths that are modified in the pull request. 3 | # 4 | # To use this workflow, you will need to set up a .github/labeler.yml 5 | # file with configuration. For more information, see: 6 | # https://github.com/actions/labeler 7 | 8 | name: Labeler 9 | on: [pull_request] 10 | 11 | jobs: 12 | label: 13 | 14 | runs-on: ubuntu-latest 15 | permissions: 16 | contents: read 17 | pull-requests: write 18 | 19 | steps: 20 | - uses: actions/labeler@v4 21 | with: 22 | repo-token: "${{ secrets.GITHUB_TOKEN }}" 23 | -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- 1 | name: Greetings 2 | 3 | on: [pull_request_target, issues] 4 | 5 | jobs: 6 | greeting: 7 | runs-on: ubuntu-latest 8 | permissions: 9 | issues: write 10 | pull-requests: write 11 | steps: 12 | - uses: actions/first-interaction@v1 13 | with: 14 | repo-token: ${{ secrets.GITHUB_TOKEN }} 15 | issue-message: 'Hello there!👋, Welcome to DevsInTech! 🚀⚡Thank you and Congratulations🎉 for opening a issue in this project. Please make sure not to start working on this issue, unless you are assigned to it.😄' 16 | pr-message: 'Our team will soon review your PR. Thanks :)' 17 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/open-source-project-review.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Open Source Project Review 3 | about: Please review my project on a livestream. If this doesn’t look right, choose 4 | a different type. 5 | title: "[PROJECT REVIEW]" 6 | labels: 'project-review, review' 7 | assignees: '' 8 | 9 | --- 10 | 11 | Your project doesn't have to be hosted at GitHub, it can also be on GitLab or other VCS 12 | 13 | ### Project link 14 | ``` 15 | https://github.com// 16 | ``` 17 | You can also join our Discord community [here](https://discord.gg/g7FmxB9uZp) 18 | Feel free to check out other cool repositories of the DevsInTech Community [here](https://github.com/devs-in-tech). 19 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '[NEW FEATURE]' 5 | labels: 'enhancement' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [Susmita-Dey] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry 13 | custom: ['https://www.buymeacoffee.com/susmitadey']# Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 14 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '[BUG]' 5 | labels: 'bug' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 OpenSourceCommunity 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | --------------------------------------------------------------------------------