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

Conversation

@MantisClone
Copy link
Member

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.

@coderabbitai
Copy link

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 15 minutes and 0 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 39798cf and 3b58aa0.

📒 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

greptile-apps bot commented Jan 17, 2026

Greptile Summary

Added a GitHub Actions workflow to automatically add newly opened issues and pull requests to the RequestNetwork project board.

  • Triggers on issues.opened and pull_request.opened events
  • Delegates to the centralized reusable workflow from RequestNetwork/.github
  • Uses PROJECT_TOKEN secret for authentication with the GitHub Projects API
  • PRs with linked issues are not added (the linked issue is tracked instead)

Confidence Score: 5/5

  • This PR is safe to merge with minimal risk
  • The workflow file is simple and well-structured, delegating to a trusted centralized reusable workflow maintained by the RequestNetwork organization. The configuration correctly uses GitHub Actions secrets for authentication and only triggers on non-destructive events (issue/PR creation).
  • No files require special attention

Important Files Changed

Filename Overview
.github/workflows/auto-project.yml Added GitHub Actions workflow to automatically add issues and PRs to project board using reusable workflow

Sequence Diagram

sequenceDiagram
    participant User
    participant GitHub
    participant Workflow as Auto Add to Project<br/>Workflow
    participant Reusable as RequestNetwork/.github<br/>add-to-project.yml
    participant API as GitHub Projects API
    participant Project as Project Board

    alt Issue Opened
        User->>GitHub: Create Issue
        GitHub->>Workflow: Trigger (issues.opened)
        Workflow->>Reusable: Call reusable workflow
        Reusable->>API: Add issue to project
        API->>Project: Update project board
        Project-->>User: Issue appears on board
    else Pull Request Opened
        User->>GitHub: Create Pull Request
        GitHub->>Workflow: Trigger (pull_request.opened)
        Workflow->>Reusable: Call reusable workflow
        Reusable->>Reusable: Check for linked issues
        alt No linked issues
            Reusable->>API: Add PR to project
            API->>Project: Update project board
            Project-->>User: PR appears on board
        else Has linked issues
            Reusable->>Reusable: Skip (issue already tracked)
        end
    end
Loading

@MantisClone MantisClone deleted the chore/add-auto-project-workflow branch January 17, 2026 03:59
@github-project-automation github-project-automation bot moved this from 🆕 New to ✅ Done in Request Network Tech Backlog Jan 17, 2026
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants