-
Notifications
You must be signed in to change notification settings - Fork 185
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
Try to fix backport workflow #3634
base: main
Are you sure you want to change the base?
Conversation
How does this work if I want to backport to multiple branches? E.g. 2.8.x and 2.7.x? I think the action should just look at the corresponding backport label, we have one backport label per branch. |
I thought you added those labels to the backported PR, not the source PR? |
No, I add them to the source PR so I know that a backport is necessary and to which branches. Sorry for the confusion! |
@bernhardmgruber no worries, thanks for clarifying! In that case, the original bp action should already meet your need, as it detects the target branch names from labels prefixed with "backport". I dunno why it failed, seems like a credential issue (#3623 (comment)), so let's try this smaller patch I just pushed. |
Can PRs be forced-merged in this repo? I don't want to waste CI resources... |
@jrhemstad would you mind admin-merge this? |
🟩 CI finished in 2h 23m: Pass: 100%/156 | Total: 1d 08h | Avg: 12m 34s | Max: 1h 52m | Hits: 524%/21667
|
Project | |
---|---|
+/- | CCCL Infrastructure |
libcu++ | |
CUB | |
Thrust | |
CUDA Experimental | |
python | |
CCCL C Parallel Library | |
Catch2Helper |
Modifications in project or dependencies?
Project | |
---|---|
+/- | CCCL Infrastructure |
+/- | libcu++ |
+/- | CUB |
+/- | Thrust |
+/- | CUDA Experimental |
+/- | python |
+/- | CCCL C Parallel Library |
+/- | Catch2Helper |
🏃 Runner counts (total jobs: 156)
# | Runner |
---|---|
110 | linux-amd64-cpu16 |
14 | windows-amd64-cpu16 |
12 | linux-amd64-gpu-rtx2080-latest-1 |
10 | linux-arm64-cpu16 |
6 | linux-amd64-gpu-rtxa6000-latest-1 |
3 | linux-amd64-gpu-rtx4090-latest-1 |
1 | linux-amd64-gpu-h100-latest-1 |
/ok to test |
🟨 CI finished in 41m 36s: Pass: 99%/156 | Total: 1d 00h | Avg: 9m 25s | Max: 40m 09s | Hits: 547%/21667
|
Project | |
---|---|
+/- | CCCL Infrastructure |
libcu++ | |
CUB | |
Thrust | |
CUDA Experimental | |
python | |
CCCL C Parallel Library | |
Catch2Helper |
Modifications in project or dependencies?
Project | |
---|---|
+/- | CCCL Infrastructure |
+/- | libcu++ |
+/- | CUB |
+/- | Thrust |
+/- | CUDA Experimental |
+/- | python |
+/- | CCCL C Parallel Library |
+/- | Catch2Helper |
🏃 Runner counts (total jobs: 156)
# | Runner |
---|---|
110 | linux-amd64-cpu16 |
14 | windows-amd64-cpu16 |
12 | linux-amd64-gpu-rtx2080-latest-1 |
10 | linux-arm64-cpu16 |
6 | linux-amd64-gpu-rtxa6000-latest-1 |
3 | linux-amd64-gpu-rtx4090-latest-1 |
1 | linux-amd64-gpu-h100-latest-1 |
Description
xref: #3623 (comment)
How this works? We add the "to-be-backported" label that I just created to the PRs to be backported, the CI would inspect the target branch stored inBACKPORT_BRANCH
, and send a PR.Checklist