Skip to content
This repository was archived by the owner on Feb 18, 2026. It is now read-only.

ci: optimize workflows#574

Merged
yacosta738 merged 2 commits into
mainfrom
ci/optimize-workflows
Feb 7, 2026
Merged

ci: optimize workflows#574
yacosta738 merged 2 commits into
mainfrom
ci/optimize-workflows

Conversation

@yacosta738
Copy link
Copy Markdown
Contributor

This pull request significantly improves the CI workflow by making job execution more efficient and accurate through enhanced change detection and conditional logic. It introduces new change filters, optimizes job dependencies, and ensures that jobs only run when relevant files are modified. Additionally, it improves caching for Node.js dependencies and refines the handling of markdown and meta file changes across multiple workflows.

CI Workflow Enhancements:

  • Added new change filters (docs, meta, secrets, webapp) in .github/workflows/ci.yml to more precisely detect changes in documentation, meta/configuration files, secrets, and webapp-related files, enabling finer-grained job triggering. [1] [2]
  • Updated job dependencies and conditional execution so that linting, verification, and build/test jobs only run when relevant files have changed, reducing unnecessary CI runs and improving feedback accuracy. [1] [2] [3] [4] [5] [6]
  • Refined the logic for checking lint and verification results, ensuring jobs are only required to succeed when their corresponding file types have changed, and providing clearer warnings when job statuses are unexpected. [1] [2]

Performance and Developer Experience:

  • Improved caching of Node.js dependencies by specifying cache-dependency-path: "pnpm-lock.yaml" in all relevant jobs, which helps speed up CI runs and ensures consistent environments. [1] [2] [3] [4] [5] [6] [7]
  • Added conditional execution for Docker-related steps in the backend pipeline, so Docker setup and warm-up only occur when PDF-related files change, further optimizing resource usage. [1] [2] [3]

Other Workflow Improvements:

  • Updated the link checker workflow to only run on changes to markdown files, reducing unnecessary checks.
  • Modified the Qodana code quality workflow to ignore documentation files, preventing irrelevant code quality checks on docs-only changes.

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Feb 7, 2026

Warning

Rate limit exceeded

@yacosta738 has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 0 minutes and 38 seconds before requesting another review.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

✨ Finishing touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch ci/optimize-workflows

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@sonarqubecloud
Copy link
Copy Markdown

sonarqubecloud Bot commented Feb 7, 2026

Comment thread .github/workflows/ci.yml
- name: Pre-pull TexLive Docker image
timeout-minutes: 10
if: needs.changes.outputs.pdf == 'true'
run: |
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 [actionlint] reported by reviewdog 🐶
shellcheck reported issue in this script: SC2086:info:12:8: Double quote to prevent globbing and word splitting [shellcheck]

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 [actionlint] reported by reviewdog 🐶
shellcheck reported issue in this script: SC2086:info:12:8: Double quote to prevent globbing and word splitting [shellcheck]

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Feb 7, 2026

✅ Contributor Report

User: @yacosta738
Status: Passed (12/13 metrics passed)

Metric Description Value Threshold Status
PR Merge Rate PRs merged vs closed 89% >= 30%
Repo Quality Repos with ≥100 stars 0 >= 0
Positive Reactions Positive reactions received 9 >= 1
Negative Reactions Negative reactions received 0 <= 5
Account Age GitHub account age 3025 days >= 30 days
Activity Consistency Regular activity over time 108% >= 0%
Issue Engagement Issues with community engagement 0 >= 0
Code Reviews Code reviews given to others 343 >= 0
Merger Diversity Unique maintainers who merged PRs 3 >= 0
Repo History Merge Rate Merge rate in this repo 0.9156626506024096 >= 0
Repo History Min PRs Previous PRs in this repo 174 >= 0
Profile Completeness Profile richness (bio, followers) 90 >= 0
Suspicious Patterns Spam-like activity detection 1 N/A

Contributor Report evaluates based on public GitHub activity. Analysis period: 2025-02-07 to 2026-02-07

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Feb 7, 2026

Dependency Review

✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

Scanned Files

None

@github-actions github-actions Bot added area:ci Continuous integration or GitHub Actions changes type:chore Code maintenance and configuration changes labels Feb 7, 2026
@sentry
Copy link
Copy Markdown

sentry Bot commented Feb 7, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.

📢 Thoughts on this report? Let us know!

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Feb 7, 2026

Qodana for JVM

156 new problems were found

Inspection name Severity Problems
Invalid @ConfigurationProperties 🔴 Failure 1
Invalid YAML configuration 🔴 Failure 1
Unused symbol 🔶 Warning 53
Invalid YAML configuration 🔶 Warning 49
Unresolved reference in KDoc 🔶 Warning 5
Taint analysis 🔶 Warning 4
Potentially ambiguous 'kotlin.coroutine.coroutineContext' usage 🔶 Warning 4
Unused import directive 🔶 Warning 1
Redundant character escape 🔶 Warning 1
Vulnerable declared dependency 🔶 Warning 1
Duplicated code fragment ◽️ Notice 12
Unknown HTTP header ◽️ Notice 10
Redundant interpolation prefix ◽️ Notice 4
Vulnerable declared dependency ◽️ Notice 3
Multi-dollar interpolation can be used in string literals (available since 2.1) ◽️ Notice 1
Redundant escaped dollar characters in string literals ◽️ Notice 1
String concatenation that can be converted to string template ◽️ Notice 1
If-Null return/break/... foldable to '?:' ◽️ Notice 1
Redundant empty initializer block ◽️ Notice 1
Unnecessary type argument ◽️ Notice 1
'substring' call should be replaced with 'take' call ◽️ Notice 1

☁️ View the detailed Qodana report

Contact Qodana team

Contact us at qodana-support@jetbrains.com

@yacosta738 yacosta738 merged commit 8a16b3f into main Feb 7, 2026
26 of 28 checks passed
@yacosta738 yacosta738 deleted the ci/optimize-workflows branch February 7, 2026 19:39
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

area:ci Continuous integration or GitHub Actions changes type:chore Code maintenance and configuration changes

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant