Skip to content

Commit 5cd11c3

Browse files
authored
Merge pull request #1211 from crazy-max/summary-info-message
print info message for build summary support checks
2 parents 16ebe77 + 0aba704 commit 5cd11c3

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

dist/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/main.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -162,13 +162,13 @@ actionsToolkit.run(
162162
if (!buildSummaryEnabled()) {
163163
core.info('Build summary disabled');
164164
} else if (GitHub.isGHES) {
165-
core.warning('Build summary is not yet supported on GHES');
165+
core.info('Build summary is not yet supported on GHES');
166166
} else if (!(await toolkit.buildx.versionSatisfies('>=0.13.0'))) {
167-
core.warning('Build summary requires Buildx >= 0.13.0');
167+
core.info('Build summary requires Buildx >= 0.13.0');
168168
} else if (builder && builder.driver === 'cloud') {
169-
core.warning('Build summary is not yet supported with Docker Build Cloud');
169+
core.info('Build summary is not yet supported with Docker Build Cloud');
170170
} else if (!ref) {
171-
core.warning('Build summary requires a build reference');
171+
core.info('Build summary requires a build reference');
172172
} else {
173173
core.info('Build summary supported!');
174174
stateHelper.setSummarySupported();

0 commit comments

Comments
 (0)