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 10 minutes and 26 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 dfaf126 and 84d7af1.

📒 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

This PR adds a new GitHub Actions workflow that automatically adds issues and pull requests to the RequestNetwork project board. The workflow uses a reusable workflow from RequestNetwork/.github and properly implements the intended behavior: issues are added when opened, PRs without linked issues are added when opened, and PRs with linked issues are skipped (since the linked issue is already tracked).

Changes:

  • Added .github/workflows/auto-project.yml - New workflow that triggers on issue and PR opens
  • Uses reusable workflow pattern from RequestNetwork/.github for maintainability
  • Properly passes PROJECT_TOKEN secret to the reusable workflow
  • Clear configuration with appropriate event triggers and job structure

Confidence Score: 5/5

  • This PR is safe to merge with no identified issues.
  • The PR introduces a straightforward, well-structured GitHub Actions workflow. The YAML syntax is correct, the reusable workflow reference follows proper GitHub Actions conventions, the event triggers are appropriate for the intended behavior, and the secret passing is correctly implemented. The workflow integrates with the existing RequestNetwork/.github infrastructure as documented in the PR description. No security concerns, logic errors, or configuration issues were identified.
  • No files require special attention

Important Files Changed

Filename Overview
.github/workflows/auto-project.yml New GitHub Actions workflow that automatically adds issues and PRs to the RequestNetwork project board. Uses a reusable workflow from RequestNetwork/.github for managing project automation. Properly triggers on issue opens and PR opens, passing the PROJECT_TOKEN secret to the reusable workflow.

Sequence Diagram

sequenceDiagram
    participant User as Developer
    participant GH as GitHub
    participant Workflow as auto-project.yml
    participant Reusable as RequestNetwork/.github<br/>add-to-project.yml
    participant ProjectAPI as GitHub Projects API

    User->>GH: Open issue or PR
    GH->>Workflow: Trigger on:issues[opened]<br/>or on:pull_request[opened]
    Workflow->>Reusable: Call reusable workflow<br/>with PROJECT_TOKEN secret
    Reusable->>ProjectAPI: Add issue/PR to project
    alt PR with linked issue
        ProjectAPI-->>Reusable: Skip (issue tracked instead)
    else PR without linked issue<br/>or standalone issue
        ProjectAPI-->>Reusable: Add to project board
    end
    Reusable-->>Workflow: Complete
    Workflow-->>GH: Workflow complete
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