Skip to content
This repository was archived by the owner on Apr 15, 2023. It is now read-only.

Commit ace2b8b

Browse files
Change repo owner and name to env variables
1 parent f3957b6 commit ace2b8b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

github.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ import (
1313
"golang.org/x/oauth2"
1414
)
1515

16-
const (
17-
githubRepoOwner = "dtandersen"
18-
githubRepoName = "docker_factorio_server"
16+
var (
17+
githubRepoOwner = os.Getenv("GITHUB_REPO_OWNER") // current organization factoriotools
18+
githubRepoName = os.Getenv("GITHUB_REPO_NAME") // current repo factorio-docker
1919
)
2020

2121
func createPullRequest(version semver.Version, branch string) {

0 commit comments

Comments
 (0)