-
Notifications
You must be signed in to change notification settings - Fork 910
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Disable nightly run with PR #7876
Conversation
|
d0c3ae6
to
f066cc9
Compare
Size Report 1Affected Products
Test Logs |
Size Analysis Report 1This report is too large (479,016 characters) to be displayed here in a GitHub comment. Please use the below link to see the full report on Google Cloud Storage.Test Logs |
f066cc9
to
837e2f7
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you just add a brief description to the PR to articulate what the new way is to run the workflow against nightly? For example, is it only triggered manually? Is it run nightly? Is it run on all PRs? Thanks!
@@ -138,7 +140,7 @@ jobs: | |||
test-name: ["test:browser:nightly"] | |||
runs-on: ubuntu-latest | |||
needs: build | |||
if: ${{ needs.build.outputs.changed == 'true'}} | |||
if: ${{ github.event.workflow_run.trigger_source == 'workflow_dispatch' }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would it be better to check if it's not pull_request
in case we add new elements to on:
above?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
Skip the tests against Firestore nightly as a PR presubmit check, it is activated when the workflow is manually triggered still.