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

@ -426,8 +426,10 @@ func TestWorkflowDispatchEvent(t *testing.T) {
assert.NoError(t, err)
defer gitRepo.Close()
workflow, err := actions_service.GetWorkflowFromCommit(gitRepo, sha, "dispatch.yml")
workflow, err := actions_service.GetWorkflowFromCommit(gitRepo, "main", "dispatch.yml")
assert.NoError(t, err)
assert.Equal(t, "refs/heads/main", workflow.Ref)
assert.Equal(t, sha, workflow.Commit.ID.String())
inputGetter := func(key string) string {
return ""