-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
fix(ci): E2E comment triggers #22443
Conversation
Datadog ReportBranch report: ✅ 0 Failed, 7 Passed, 0 Skipped, 25.43s Total Time |
@@ -130,24 +130,23 @@ jobs: | |||
- run: docker image prune -af ; docker container prune -f | |||
- name: e2e-datadog-logs | |||
if: ${{ startsWith(github.event.review.body, '/ci-run-e2e-datadog-logs') | |||
|| startsWith(github.event.review.body, '/ci-run-integration-all') |
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.
Did you mean to delete this one? I've used it before to run all integration tests.
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.
Yes, we can use /ci-run-all
to run all E2E and IT tests. And then we also have:
- /ci-run-e2e-all (all E2E)
- /ci-run-integration-all (all IT)
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.
I think /ci-run-all
runs all tests, not just E2E and IT tests 🤔
I see though,/ci-run-integration-all
shouldn't have been here since it was an e2e test. 👍
Summary
Fix CI comment triggers.
To be rebased on #22441
Change Type
Is this a breaking change?
How did you test this PR?
Does this PR include user facing changes?
Checklist
make check-all
is a good command to run locally. This check isdefined here. Some of these
checks might not be relevant to your PR. For Rust changes, at the very least you should run:
cargo fmt --all
cargo clippy --workspace --all-targets -- -D warnings
cargo nextest run --workspace
(alternatively, you can runcargo test --all
)Cargo.lock
), pleaserun
dd-rust-license-tool write
to regenerate the license inventory and commit the changes (if any). More details here.References