-
Notifications
You must be signed in to change notification settings - Fork 25
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
Added custom action for PR title checker #63
base: master
Are you sure you want to change the base?
Conversation
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: Ankit152 The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Welcome @Ankit152! |
Signed-off-by: Ankit152 <ankitkurmi152@gmail.com>
32883af
to
bb1db29
Compare
@camilamacedo86 can you please have a look? |
@@ -51,6 +51,10 @@ jobs: | |||
uses: kubernetes-sigs/kubebuilder-release-tools@v0.2 | |||
with: | |||
github_token: ${{ secrets.GITHUB_TOKEN }} |
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.
The above way will no longer any more.
It is deprecated. So, by adding new github action we need to update the note, ensure that we inform what is deprecated and provide the new solution.
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.
Okay.
So, if I understand correctly, we need to remove the existing job yaml in the README and add the new one.
@@ -0,0 +1,47 @@ | |||
#!/bin/bash | |||
|
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.
We need to change the GitHub action used here to verify the PR title
to either test the PR title of this repo with the new solution so that we can ensure that works
@@ -0,0 +1,47 @@ | |||
#!/bin/bash | |||
|
|||
# Copyright 2024 The Kubernetes Authors. |
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.
By last we should either deprecated the Golang code with annotations/comments since we are replacing the old implementation with the shell script.
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 a lot for your contribution 🥇
I added a few comments and suggestion please see wdyt
Fixes: #62