Skip to content

Commit 54bbe82

Browse files
committed
Always log when queries are configured in the repository properties
1 parent 4178e15 commit 54bbe82

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

lib/init-action.js

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/config/db-config.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -383,6 +383,11 @@ function combineQueries(
383383
augmentationProperties.repoPropertyQueries &&
384384
augmentationProperties.repoPropertyQueries.input
385385
) {
386+
logger.info(
387+
`Found query configuration in the repository properties (${RepositoryPropertyName.EXTRA_QUERIES}): ` +
388+
`${augmentationProperties.repoPropertyQueries.input.map((q) => q.uses).join(", ")}`,
389+
);
390+
386391
// If there are queries configured as a repository property, these may be organisational
387392
// settings. If they don't allow combining with other query configurations, return just the
388393
// ones configured in the repository properties.

0 commit comments

Comments
 (0)