-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
GH-44974: [Dev] Fix minor issue handling #44975
Conversation
Not sure how to test this before it reaches git main @raulcd |
|
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.
I've tested on my fork.
In order to test it I merge the change on my fork on main and create a PR against my fork, see this PR as an example:
raulcd#86
I had to also apply this change:
raulcd@c297025
otherwise it fails on the Check issue
step as seen on this action failure:
https://github.com/raulcd/arrow/actions/runs/12237252551/job/34132570615
with my change applied it is successful as seen here:
https://github.com/raulcd/arrow/actions/runs/12237520289/job/34133461978?pr=86
I've also created a PR with an associated issue with GH-
prefix, which is successful and performs the required steps. See here:
https://github.com/raulcd/arrow/actions/runs/12237616405/job/34133767858?pr=88
and the PR: raulcd#88
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.
+1
This is not going to fix the issue, it still requires this commit to be included: |
Oh, sorry. I checked only changes. I should have also checked affected file names. |
### Rationale for this change This is a follow up from: #44975 (comment) ### What changes are included in this PR? Fix the issue_check workflow to not assume all PRs are going to have an associated issue. Fix the worflow for minor issues. ### Are these changes tested? I've tested on my fork. ### Are there any user-facing changes? No Authored-by: Raúl Cumplido <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
Rationale for this change
The current implementation works for
GH-XXX
PRs but doesn't work forMINOR
PRs.What changes are included in this PR?
Add a missing
issue.kind
check.Are these changes tested?
Yes.
Are there any user-facing changes?
No.