- For Code change & No code change both.
- Fork & Clone the repo.
- Create a new branch:
git checkout -b fix-issue-12- Commit & Push:
git add .
git commit -m "Fixes #12"
git push origin fix-issue-12- This just an example,
Commit message&Branch nameshould be as Issue number.
- Open a PR (Pull request) On GitHub, click “Compare & Pull Request” and ensure the PR message includes:
Fixes #12This will auto-link the
Issueand close the issue when merged.
Below are the workflow definitions, describing the purpose of each workflow in this repository:
issue-create-automate-message.yml: Automatically posts a comment asking the issue author to wait until a maintainer reviews and assigns the issue. (Triggered by GitHub Actions)slash-startwork.yml: Allows repository maintainers to automatically assign issues and add labels using the/startworkcommand. For example,/startwork 3command will add the labelsLevel-3,GsSOC, andStart Working, assign the issue to its author, and post a message: "You can start working on this issue!☺️ "pr-create-automate-message.yml: Automatically comments on new pull requests, asking the PR author to wait for a maintainer’s review and assignment.pr-merge-automate-message.yml: When triggered, this assigns the merged PR to its author, applies the labelsPR Merged!🥳,GsSOC, andLevel-{n}(auto-detected from the linked issue), and comments to congratulate the contributor on their merged PR.
