If I forgot to add needs-cherrypick and a mileston...
# development
h
If I forgot to add needs-cherrypick and a milestone to a PR, so the auto cherry-picker didn't do anything, and then I add those and manually rerun the auto cherry-picker CI job via the GHA web UI, I would expect it to do its thing. But it looks like it doesn't?
b
Got links?
b
if: (github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'needs-cherrypick') ) || github.event_name == 'workflow_dispatch'
must be wrong somehow I guess
h
How do I run it manually locally?
I would expect both sides of the or to be true
but certainly the RHS, for a manual rerun
b
The left side will be false. The event that triggered this workflow wasn't
pull_request
But the RHS...
Let's try something...
Yeah that worked 🤷‍♂️
So try again?
h
Well no because it'll run at the old commit without that change
b
No, manual workflow runs on
main
h
How do I run it manually locally?
I don't see docs for this somehow
b
That's the same link?
The run from earlier (~3 hours ago)
h
That's the same run but it was re-run just now
b
Oh re-run doens't use latest commit. It's basically for flakiness. Kick off a new run, that'll use latest
main
h
Right, that was my point above
Oh, you can actually start a new run from the UI
neat
b