Skip to content

Commit 699582e

Browse files
fix !project_id error message typo (#435)
<!-- Thank you for proposing a pull request! Please note that SOME TESTS WILL LIKELY FAIL due to how GitHub exposes secrets in Pull Requests from forks. Someone from the team will review your Pull Request and respond. Please describe your change and any implementation details below. --> Small change! This error message seems like it's missing a word, so based on the comment on line 202, I changed it from > `⚠️ Failed to a project ID from the given inputs.` to > `⚠️ Failed to compute a project ID from the given inputs`
1 parent 6384b34 commit 699582e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/main.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ export async function run(logger: Logger) {
202202
// Set the project ID environment variables to the computed values.
203203
if (!projectID) {
204204
logger.info(
205-
`⚠️ Failed to a project ID from the given inputs. Neither the ` +
205+
`⚠️ Failed to compute a project ID from the given inputs. Neither the ` +
206206
`"project_id" output nor any environment variables will be ` +
207207
`exported. If you require these values in other steps, specify the ` +
208208
`"project_id" input directly.`,

0 commit comments

Comments
 (0)