(repoSlug string)
| 26 | var checkoutActionPattern = regexp.MustCompile(`^(\s*)(uses: actions/checkout@[^\s]*)(.*)$`) |
| 27 | |
| 28 | func trialRepositoryURL(repoSlug string) string { |
| 29 | return fmt.Sprintf("%s/%s", getGitHubHost(), repoSlug) |
| 30 | } |
| 31 | |
| 32 | func trialRepositoryGitURL(repoSlug string) string { |
| 33 | return trialRepositoryURL(repoSlug) + ".git" |