Skip to content

Commit 86cdd56

Browse files
committed
changed env var names from USER, USER_REPO to GITHUB_USER, GITHUB_REPO
1 parent ee0f492 commit 86cdd56

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/test/scala/Constants.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ trait Constants {
2626
}
2727
}
2828

29-
protected val user = sys.env("USER")
30-
protected val userRepo = sys.env("USER_REPO")
29+
protected val user = sys.env("GITHUB_USER")
30+
protected val userRepo = sys.env("GITHUB_REPO")
3131

3232
protected val otherUser = "shunjikonishi"
3333
protected val collaboratorUser = "givery-dev"

src/test/scala/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ This readme documents the changes to the tests.
77

88
``` bash
99
export GITHUB_TOKEN=[Your GitHub Token]
10-
export USER=[Your User Name]
11-
export USER_REPO=[Your Repo name that exists]
10+
export GITHUB_USER=[Your User Name]
11+
export GITHUB_REPO=[Your Repo name that exists]
1212
```
1313

1414
## Optional settings

0 commit comments

Comments
 (0)