Skip to content

Commit

Permalink
CID-2744: change manifestFilePath to manifestFileDirectory
Browse files Browse the repository at this point in the history
  • Loading branch information
mohamedlajmileanix committed Jul 23, 2024
1 parent f50762f commit 99bfb85
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ data class GitHubEnterpriseProperties(
val baseUrl: String,
val gitHubAppId: String,
val pemFile: String,
val manifestFilePath: String,
val manifestFileDirectory: String,
)
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class GitHubGraphQLService(
GetRepositories.Variables(
pageCount = PAGE_COUNT,
cursor = cursor,
expression = "HEAD:${gitHubEnterpriseProperties.manifestFilePath}$MANIFEST_FILE_NAME"
expression = "HEAD:${gitHubEnterpriseProperties.manifestFileDirectory}$MANIFEST_FILE_NAME"
)
)

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ github-enterprise:
baseUrl: ${GITHUB_ENTERPRISE_BASE_URL:}
githubAppId: ${GITHUB_APP_ID:}
pemFile: ${PEM_FILE:}
manifestFilePath: ${MANIFEST_FILE_DIRECTORY:}
manifestFileDirectory: ${MANIFEST_FILE_DIRECTORY:}
leanix:
base-url: https://${LEANIX_DOMAIN}/services
ws-base-url: wss://${LEANIX_DOMAIN}/services
Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ github-enterprise:
baseUrl: ${GITHUB_ENTERPRISE_BASE_URL:dummy}
githubAppId: ${GITHUB_APP_ID:dummy}
pemFile: ${PEM_FILE:dummy}
manifestFilePath: ${MANIFEST_FILE_DIRECTORY:}
manifestFileDirectory: ${MANIFEST_FILE_DIRECTORY:}
leanix:
base-url: https://${LEANIX_DOMAIN:dummy}/services
ws-base-url: wss://${LEANIX_DOMAIN:dummy}/services
Expand Down

0 comments on commit 99bfb85

Please sign in to comment.