File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -163,8 +163,8 @@ export async function run(logger: Logger) {
163
163
// repository.
164
164
const githubWorkspaceIsEmpty = await isEmptyDir ( githubWorkspace ) ;
165
165
if ( githubWorkspaceIsEmpty ) {
166
- logger . warning (
167
- `The "create_credentials_file" option is true, but the current ` +
166
+ logger . info (
167
+ `⚠️ The "create_credentials_file" option is true, but the current ` +
168
168
`GitHub workspace is empty. Did you forget to use ` +
169
169
`"actions/checkout" before this step? If you do not intend to ` +
170
170
`share authentication with future steps in this job, set ` +
@@ -198,9 +198,11 @@ export async function run(logger: Logger) {
198
198
199
199
// Set the project ID environment variables to the computed values.
200
200
if ( ! projectID ) {
201
- logger . warning (
202
- `Unable to compute project ID from inputs, skipping export. Please ` +
203
- `specify the "project_id" input directly.` ,
201
+ logger . info (
202
+ `⚠️ Failed to a project ID from the given inputs. Neither the ` +
203
+ `"project_id" output nor any environment variables will be ` +
204
+ `exported. If you require these values in other steps, specify the ` +
205
+ `"project_id" input directly.` ,
204
206
) ;
205
207
} else {
206
208
setOutput ( 'project_id' , projectID ) ;
You can’t perform that action at this time.
0 commit comments