Skip to content

chore: add auto-project workflow#114

Merged
MantisClone merged 1 commit intomainfrom
chore/add-auto-project-workflow
Jan 17, 2026
Merged

chore: add auto-project workflow#114
MantisClone merged 1 commit intomainfrom
chore/add-auto-project-workflow

Conversation

@MantisClone
Copy link
Member

@MantisClone MantisClone commented Jan 17, 2026

Adds workflow to automatically add issues and PRs to the project board.

  • Issues: Added when opened
  • PRs without linked issues: Added when opened
  • PRs with linked issues: Not added (the linked issue is tracked instead)

Uses the reusable workflow from RequestNetwork/.github.


Closes RequestNetwork/public-issues#130

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Jan 17, 2026

Warning

Rate limit exceeded

@MantisClone has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 14 minutes and 10 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.

📥 Commits

Reviewing files that changed from the base of the PR and between b6e3507 and 737f790.

📒 Files selected for processing (1)
  • .github/workflows/auto-project.yml

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.

@greptile-apps
Copy link
Contributor

greptile-apps bot commented Jan 17, 2026

Greptile Summary

This PR adds an automated workflow that adds issues and PRs to the RequestNetwork project board. The workflow triggers when issues or PRs are opened, then delegates to a reusable workflow maintained in the RequestNetwork/.github repository. The implementation follows the established pattern used in the codebase (similar to the existing pr-comments workflow) and appropriately distinguishes between issues, PRs with linked issues (not added), and PRs without linked issues (added). The change is minimal, focused, and well-integrated with existing infrastructure.

Confidence Score: 4/5

  • This PR is safe to merge. It adds a straightforward workflow that follows established patterns and has minimal risk.
  • The workflow addition is simple and focused - it only adds a new YAML file that delegates to a trusted reusable workflow maintained by RequestNetwork. The configuration is minimal with no custom logic that could introduce bugs. The only minor consideration is that the workflow depends on the PROJECT_TOKEN secret being properly configured in the repository (typical for this type of integration), but this is a standard operational concern rather than a code quality issue. The implementation mirrors the existing pr-comments workflow pattern, demonstrating consistency with the codebase.
  • No files require special attention

Important Files Changed

Filename Overview
.github/workflows/auto-project.yml New workflow that automatically adds issues and PRs to a project board by delegating to a reusable workflow. The implementation is clean and follows established patterns in the repo.

Sequence Diagram

sequenceDiagram
    participant User
    participant GitHub
    participant Auto-Project Workflow
    participant RequestNetwork/.github Workflow
    participant Project Board

    User->>GitHub: Open Issue or PR
    GitHub->>Auto-Project Workflow: Trigger (on opened event)
    Auto-Project Workflow->>RequestNetwork/.github Workflow: Call reusable workflow with PROJECT_TOKEN
    RequestNetwork/.github Workflow->>Project Board: Add issue/PR to project
    Project Board-->>GitHub: Workflow complete
    GitHub-->>User: Issue/PR created and added to project
Loading

@MantisClone MantisClone merged commit ae96043 into main Jan 17, 2026
7 checks passed
@MantisClone MantisClone deleted the chore/add-auto-project-workflow branch January 17, 2026 20:24
Copy link

@AlirezaDarbandi AlirezaDarbandi left a comment

Choose a reason for hiding this comment

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

thanks

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

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Chore - Deploy auto-project workflow to all tracked repos

2 participants