Add manual Cloud Run invocation workflow#50
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: ef94cdb074
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| - name: Authenticate to Google Cloud | ||
| uses: google-github-actions/auth@v3 |
There was a problem hiding this comment.
Add checkout before authenticating to Google Cloud
Insert an actions/checkout step before google-github-actions/auth@v3; otherwise later gcloud commands can fail to authenticate in this workflow. The auth action’s own prerequisites require checkout first because it writes credentials into $GITHUB_WORKSPACE, and this job currently goes straight from input validation to auth, so manual invocations can fail before reaching the Cloud Run call.
Useful? React with 👍 / 👎.
Summary
Tests