-
Notifications
You must be signed in to change notification settings - Fork 39
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
revert: do not run test on push #2323
base: v1.6-dev
Are you sure you want to change the base?
Conversation
…_given_by_identities` (#2309) Co-authored-by: Ivan Shumkov <[email protected]>
…entity-transfers-in-strategy-tests
This reverts commit 48cca1a.
…n-push' into revert-2308-ci/do-not-run-test-on-push
WalkthroughThe changes in the pull request involve updates to the GitHub Actions workflow configuration in Changes
Possibly related PRs
Suggested reviewers
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🧰 Additional context used🪛 actionlint.github/workflows/tests.yml13-13: character '' is invalid for branch and tag names. only special characters [, ?, +, *, , ! can be escaped with . see (glob) 🔇 Additional comments (2).github/workflows/tests.yml (2)
The reversion of push event triggers looks correct, and the addition of scheduled runs at 4:30 AM UTC is a good practice for catching issues that might not be detected during regular development activities. 🧰 Tools🪛 actionlint13-13: character '' is invalid for branch and tag names. only special characters [, ?, +, *, , ! can be escaped with . see (glob) Line range hint The conditions for running jobs on push, workflow_dispatch, schedule events, and non-draft PRs are consistently applied across all relevant jobs. This ensures uniform behavior across the workflow. Also applies to: 45-45, 52-52, 82-82, 108-108, 127-127 ✅ Verification successfulJob conditions are consistently applied across main workflow jobs The verification confirms that the condition 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Verify consistency of job conditions across the workflow
# Check if all jobs have the same condition
rg -A 1 "if: \$\{\{ github\.event_name == 'push' \|\| github\.event_name == 'workflow_dispatch' \|\| github\.event_name == 'schedule' \|\| \!github\.event\.pull_request\.draft \}\}"
Length of output: 566 Script: #!/bin/bash
# Description: Verify consistency of job conditions across the workflow using simpler pattern
# Using simpler pattern to avoid regex escaping issues
rg "if: " .github/workflows/tests.yml -A 1
Length of output: 1221 🧰 Tools🪛 actionlint9-9: character '' is invalid for branch and tag names. only special characters [, ?, +, *, , ! can be escaped with . see (glob) 13-13: character '' is invalid for branch and tag names. only special characters [, ?, +, *, , ! can be escaped with . see (glob) Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Reverts #2308
Summary by CodeRabbit