You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As far as I can tell, these are not good refs for GitHub. The command fails. I believe it is this bit, +refs/heads/pull/3811. I think it should be +refs/pull/3811, as that succeeded on my system.
In this PR (stratis-storage/stratis-cli#1151) rather than trying to use the ref arg for the action, I've just cobbled together my own set of git commands, thusly, executed right after the checkout action. These are definitely working.
I think that there should be some way for me to specify the PR via the ref that ought to work, and I have found none so far. I believe that is due to the malformed ref spec, and so this is a bug.
The text was updated successfully, but these errors were encountered:
I was looking to see how I could possibly submit a fix, when, on reading the code, I inferred that this refs/pull/3811/head would work. So, I guess this is just a usability bug.
Hi!
I've tried a bunch of things, and I think I've found a bug.
Take this example here: https://github.com/stratis-storage/stratis-cli/actions/runs/14359209055/job/40256004629 .
You can observe the configuration for the action, etc. in the logs.
This line is the interesting one:
/usr/bin/git -c protocol.version=2 fetch --prune --no-recurse-submodules --depth=1 origin +refs/heads/pull/3811/*:refs/remotes/origin/pull/3811/* +refs/tags/pull/3811/*:refs/tags/pull/3811/*
As far as I can tell, these are not good refs for GitHub. The command fails. I believe it is this bit,
+refs/heads/pull/3811
. I think it should be+refs/pull/3811
, as that succeeded on my system.In this PR (stratis-storage/stratis-cli#1151) rather than trying to use the
ref
arg for the action, I've just cobbled together my own set of git commands, thusly, executed right after the checkout action. These are definitely working.I think that there should be some way for me to specify the PR via the
ref
that ought to work, and I have found none so far. I believe that is due to the malformed ref spec, and so this is a bug.The text was updated successfully, but these errors were encountered: