Skip to content

Add CI Workflow and Badge#895

Open
fy23-ssvhankade-star wants to merge 2 commits into
RohanExploit:mainfrom
fy23-ssvhankade-star:main
Open

Add CI Workflow and Badge#895
fy23-ssvhankade-star wants to merge 2 commits into
RohanExploit:mainfrom
fy23-ssvhankade-star:main

Conversation

@fy23-ssvhankade-star

@fy23-ssvhankade-star fy23-ssvhankade-star commented Jul 6, 2026

Copy link
Copy Markdown

Added a generic CI workflow and a badge to the README to make the project look more professional.


Summary by cubic

Add a GitHub Actions CI workflow that runs on push and PR to main/master, uses actions/checkout@v3 and actions/setup-node@v3 to set up Node.js 18, and runs placeholder checks. Add a CI status badge to the README linking to the workflow and include social_preview.png for better link previews.

Written for commit e84c5f4. Summary will update on new commits.

Review in cubic

@netlify

netlify Bot commented Jul 6, 2026

Copy link
Copy Markdown

Deploy Preview for fixmybharat failed. Why did it fail? →

Name Link
🔨 Latest commit e84c5f4
🔍 Latest deploy log https://app.netlify.com/projects/fixmybharat/deploys/6a4bec7f936c8500093fba48

@github-actions

github-actions Bot commented Jul 6, 2026

Copy link
Copy Markdown

🙏 Thank you for your contribution, @fy23-ssvhankade-star!

PR Details:

Quality Checklist:
Please ensure your PR meets the following criteria:

  • Code follows the project's style guidelines
  • Self-review of code completed
  • Code is commented where necessary
  • Documentation updated (if applicable)
  • No new warnings generated
  • Tests added/updated (if applicable)
  • All tests passing locally
  • No breaking changes to existing functionality

Review Process:

  1. Automated checks will run on your code
  2. A maintainer will review your changes
  3. Address any requested changes promptly
  4. Once approved, your PR will be merged! 🎉

Note: The maintainers will monitor code quality and ensure the overall project flow isn't broken.

@coderabbitai

coderabbitai Bot commented Jul 6, 2026

Copy link
Copy Markdown

Warning

Review limit reached

@fy23-ssvhankade-star, you've reached your PR review limit, so we couldn't start this review.

Next review available in: 58 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: e9410722-2a1e-40dc-8f10-917d2f45079e

📥 Commits

Reviewing files that changed from the base of the PR and between 15cd3e5 and e84c5f4.

⛔ Files ignored due to path filters (1)
  • social_preview.png is excluded by !**/*.png
📒 Files selected for processing (2)
  • .github/workflows/ci.yml
  • README.md
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

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.

@github-actions github-actions Bot added the size/s label Jul 6, 2026

@github-actions github-actions Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

👋 Hello @fy23-ssvhankade-star! Thank you for your first Pull Request to VishwaGuru! 🎉

We appreciate your contribution to this open source platform empowering India's youth to engage with democracy.

What happens next?

  • A maintainer will review your PR soon
  • Please ensure all tests pass and the code follows our style guidelines
  • Be ready to address any feedback or requested changes

Before your PR is merged:

  • Ensure your code follows the project's coding standards
  • All tests should pass
  • Update documentation if needed
  • Make sure your commits are clear and descriptive

Resources:

Thank you for contributing! 🚀

@cubic-dev-ai cubic-dev-ai Bot left a comment

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.

1 issue found and verified against the latest diff

Prompt for AI agents (unresolved issues)

Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.


<file name=".github/workflows/ci.yml">

<violation number="1" location=".github/workflows/ci.yml:13">
P2: The new workflow uses older major versions of core GitHub Actions (`actions/checkout@v3` and `actions/setup-node@v3`) rather than their current supported releases. These v3 actions run on deprecated Node 16 runtimes, which GitHub has been phasing out, and newer major versions like v4 were released specifically to address those deprecation warnings. Because this workflow is newly introduced, it would be better to start on a current, supported version to avoid immediate technical debt and future runtime failures.</violation>
</file>

Reply with feedback, questions, or to request a fix.

Re-trigger cubic

Comment thread .github/workflows/ci.yml
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

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.

P2: The new workflow uses older major versions of core GitHub Actions (actions/checkout@v3 and actions/setup-node@v3) rather than their current supported releases. These v3 actions run on deprecated Node 16 runtimes, which GitHub has been phasing out, and newer major versions like v4 were released specifically to address those deprecation warnings. Because this workflow is newly introduced, it would be better to start on a current, supported version to avoid immediate technical debt and future runtime failures.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At .github/workflows/ci.yml, line 13:

<comment>The new workflow uses older major versions of core GitHub Actions (`actions/checkout@v3` and `actions/setup-node@v3`) rather than their current supported releases. These v3 actions run on deprecated Node 16 runtimes, which GitHub has been phasing out, and newer major versions like v4 were released specifically to address those deprecation warnings. Because this workflow is newly introduced, it would be better to start on a current, supported version to avoid immediate technical debt and future runtime failures.</comment>

<file context>
@@ -0,0 +1,21 @@
+  build:
+    runs-on: ubuntu-latest
+    steps:
+    - uses: actions/checkout@v3
+    - name: Setup Node.js
+      uses: actions/setup-node@v3
</file context>
Suggested change
- uses: actions/checkout@v3
- uses: actions/checkout@v4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants