Closed praveenscience closed 1 year ago
Hey @praveenscience, here is an issue template.👇
Please select the type of issue from the following choices:
Please provide any additional details or context about the issue.
To automatically assign a label to an issue in GitHub, you can make use of GitHub Actions. Here's how you can set it up:👇
name: Auto Label Issue on: issues: types: [opened]
jobs: labelIssue: runs-on: ubuntu-latest steps:
name: Check if issue title includes GSSoC23 id: check_issue_title run: echo "::set-output name=contains_GSSoC23::$(echo ${{ github.event.issue.title }} | grep -c 'GSSoC23')"
name: Add label to the issue if: steps.check_issue_title.outputs.contains_GSSoC23 == '1' run: | echo "GSSoC23" >> labels.txt cat labels.txt | xargs -I {} gh issue label add ${{ github.repository }} ${{ github.event.issue.number }} {}
name: Cleanup labels file run: rm labels.txt
It's yours @DSR1729! 💪🏻
I think instead of giving choice to tick check box ✅ we can create different issue template of respective Issues, so that we can set content requirements as per issues. Eg: (Bug should have a mandatory Screenshot section for better understanding..., Step to reproduce, etc ) Wherever required
@praveenscience
Hey @praveenscience here is the PREVIEW of my changes in the contributing.md file, suggest me changes that you want to see init !! Also I have been trying to contact you on linkedIn, inorder to get your Whatsapp, no 🙂
@AmanJain18 Kindly try it out! Let's make it that way, that was the expected one. 💪🏻
@AmanJain18 Kindly try it out! Let's make it that way, that was the expected one. 💪🏻
Yes sure, Just let me know what Mandatory this to be asked while creating issue... Generally it has this structure:- Bug Description Current behaviour Expected behaviour reproduction StepS Screenshort term of code of conduct...
Give the first pass based on other projects, let's improve on top of it... 😊
This issue is completed and reslove mark it as close...
Resolved! Thanks! 😊
As a part of GSSoC 23, I would like someone to create an Issue Template that gives the following choices.
And it should automatically give the default GSSoC Label. Please explain how you're planning to do it while you wanna grab this issue.