-
-
Notifications
You must be signed in to change notification settings - Fork 75
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 #1352 from mdazfar2/legacy
[Changed] Issue template & Little bit of README file
- Loading branch information
Showing
7 changed files
with
91 additions
and
103 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 |
---|---|---|
@@ -1,26 +1,51 @@ | ||
name: "🐞 Bug Report" | ||
description: "Create a report to help us improve" | ||
title: "BUG:" | ||
name: 🐞 Bug | ||
description: Report an issue to help us improve the project. | ||
title: '[BUG] ' | ||
labels: ["bug"] | ||
body: | ||
- type: checkboxes | ||
- type: textarea | ||
attributes: | ||
label: "Is there an existing issue for this?" | ||
description: "Please search to see if an issue already exists for the bug you encountered." | ||
options: | ||
- label: "I have searched the existing issues" | ||
required: true | ||
label: Description | ||
id: description | ||
description: A brief description of the issue or bug you are facing, also include what you tried and what didn't work. | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: "What went down?" | ||
description: "A concise description of what you're experiencing." | ||
label: Screenshots | ||
id: screenshots | ||
description: Please add screenshots if applicable | ||
validations: | ||
required: true | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Any additional information? | ||
id: extrainfo | ||
description: Any additional information or Is there anything we should know about this bug? | ||
validations: | ||
required: false | ||
- type: dropdown | ||
id: browsers | ||
attributes: | ||
label: What browser are you seeing the problem on? | ||
multiple: true | ||
options: | ||
- Firefox | ||
- Chrome | ||
- Safari | ||
- Microsoft Edge | ||
- type: checkboxes | ||
id: no-duplicate-issues | ||
attributes: | ||
label: "Record" | ||
label: 'Checklist' | ||
options: | ||
- label: "I agree to follow this project's Code of Conduct" | ||
- label: 'I have checked the existing issues' | ||
required: true | ||
|
||
- label: 'I have read the [Contributing Guidelines](https://github.com/mdazfar2/HelpOps-Hub/blob/main/CONTRIBUTING.md)' | ||
required: true | ||
- label: "I'm a GSSoC'24-Extd contributor" | ||
- label: "I'm a Hacktoberfest'24 contributor" | ||
- label: "I want to work on this issue" | ||
|
||
- label: 'I am willing to work on this issue (optional)' | ||
required: false |
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
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 |
---|---|---|
@@ -1,25 +1,34 @@ | ||
name: "✨ Feature Request" | ||
description: "Suggest an idea for this project " | ||
title: "Feat:" | ||
name: Feature Request 💡 | ||
description: Have any new idea or new feature for HelpOps-Hub? Please suggest! | ||
title: '[Feat]' | ||
labels: [enhancement] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: "Describe the feature" | ||
description: | ||
label: Description | ||
description: A clear and concise description of any alternative solution or features you've considered. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: screenshots | ||
attributes: | ||
label: "Add ScreenShots" | ||
description: "Add sufficient SS to explain your issue." | ||
label: Screenshots | ||
description: Please add screenshots if applicable | ||
validations: | ||
required: true | ||
required: false | ||
- type: checkboxes | ||
id: no-duplicate-issues | ||
attributes: | ||
label: "Record" | ||
label: 'Checklist' | ||
options: | ||
- label: "I agree to follow this project's Code of Conduct" | ||
- label: 'I have checked the existing issues' | ||
required: true | ||
|
||
- label: 'I have read the [Contributing Guidelines](https://github.com/mdazfar2/HelpOps-Hub/blob/main/CONTRIBUTING.md)' | ||
required: true | ||
- label: "I'm a GSSoC'24-Extd contributor" | ||
- label: "I'm a Hacktoberfest'24 contributor" | ||
- label: "I want to work on this issue" | ||
|
||
- label: 'I am willing to work on this issue (optional)' | ||
required: false |
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,21 @@ | ||
name: Greetings | ||
|
||
on: | ||
fork: | ||
push: | ||
branches: [main] | ||
issues: | ||
types: [opened] | ||
pull_request_target: | ||
types: [opened] | ||
|
||
jobs: | ||
welcome: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: EddieHubCommunity/gh-action-community/src/welcome@main | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
issue-message: "Hello ${{ github.actor }}! \n Thank you for raising this issue! 😊 Your contribution is valuable to us! 😊 \n\nPlease make sure to follow our [Contributing Guidelines. 💪🏻](https://github.com/mdazfar2/HelpOps-Hub/blob/main/CONTRIBUTING.md) \n\nPlease only work on an issue if you're assigned; otherwise, the PR will be automatically closed.\nOur review team will carefully assess the issue and reach out to you soon! 😇 \n We appreciate your patience! " | ||
pr-message: "Thank you, ${{ github.actor }}, for creating this pull request and contributing to HelpOps-Hub! 💗\n\n The maintainers will review this Pull Request and provide feedback as soon as possible! 😇\nWe appreciate your patience and contribution, Keep up the great work! 😀" |