-
Notifications
You must be signed in to change notification settings - Fork 109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: workflow to add labels on analyzing title/comment based on conditions #545
Conversation
it will analyze title and comment and will add label accordingly
@Anmol-Baranwal is attempting to deploy a commit to the Vibey Team on Vercel. A member of the Team first needs to authorize it. |
Thank you, @Anmol-Baranwal, for creating this pull request and contributing to GitHub-ReadMe! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for creating a pull request for vibey!
We appreciate your contribution and are excited to review your changes. If you have any questions or need additional information, please don't hesitate to let us know. We look forward to working with you to improve vibey. Thanks again for your support!If you want to keep contributing to open source and want to do it with a supportive and inclusive community, consider joining UniKonf. We help and encourage each other to make regular contributions to open source projects. If you have any questions, do not hesitate to ask. We look forward to having you as part of our community!
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you should check the errors.
Let me double check it. I will let you know. |
I believe this would work. Earlier, I was trying to take issues into account, but I hadn't given read permission for the same. Due to this, an error was arising in the CI activity. |
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your contribution @Anmol-Baranwal and looking for more contribution in gh actions.
Related Issue
Closes #501
About Regex Expression
You can test it here: https://regex101.com/
I am taking two examples, which you must read so that you can properly review the PR.
/\bfeat\b/
: This regular expression matches the exact word "feat" with word boundaries (\b
). It will match strings that contain the word "feat" as a whole word, but not if it's part of another word (e.g., "defeat" or "feature")./feature/i
: This regular expression matches the word "feature" (case-insensitive) anywhere within a string. It will match strings that contain "feature" in any combination of uppercase and lowercase letters (e.g., "Feature", "FEATURE", "feature").Describe the changes you've made
Let me know if you need anything.
Good luck :)
Type of change
What sort of change have you made:
How Has This Been Tested?
Code of Conduct