File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -36,10 +36,10 @@ Notes:
3636func resolveGitVars () (gitRepoUrl string , gitRef string ) {
3737 // On a GitHub Action (Pull Request) these variables will be set
3838 // https://docs.github.com/en/actions/learn-github-actions/variables#default-environment-variables
39- gitRepo := common .GetOsEnvOrDefault ("GITHUB_REPOSITORY" , "knative/func" )
39+ gitRepo := common .GetOsEnvOrDefault ("GITHUB_REPOSITORY" , "openshift- knative/kn-plugin- func" )
4040 gitRepoUrl = "https://github.com/" + gitRepo + ".git"
4141
42- gitRef = common .GetOsEnvOrDefault ("GITHUB_REF" , "main " )
42+ gitRef = common .GetOsEnvOrDefault ("GITHUB_REF" , "release-v1.17 " )
4343 // GitHub uses 2 refs per merge request (refs/pull/ID/head and refs/pull/ID/merge), ensure using */head
4444 exp := regexp .MustCompile ("^refs/pull/(.*?)/merge$" )
4545 gitRef = exp .ReplaceAllString (gitRef , "refs/pull/${1}/head" )
You can’t perform that action at this time.
0 commit comments