Fixes git references wrongly transmitted to the action run

This commit is contained in:
Mai-Lapyst 2024-06-30 05:54:31 +02:00
parent 9634d954d4
commit 9b225b56a9
No known key found for this signature in database
GPG key ID: F88D929C09E239F8
3 changed files with 25 additions and 1 deletions

View file

@ -141,6 +141,11 @@ func (entry *Workflow) Dispatch(ctx context.Context, inputGetter InputValueGette
}
func GetWorkflowFromCommit(gitRepo *git.Repository, ref, workflowID string) (*Workflow, error) {
ref, err := gitRepo.ExpandRef(ref)
if err != nil {
return nil, err
}
commit, err := gitRepo.GetCommit(ref)
if err != nil {
return nil, err