Skip to content

chore: add auto-project workflow#6

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

chore: add auto-project workflow#6
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

@codesandbox
Copy link

codesandbox bot commented Jan 17, 2026

Review or Edit in CodeSandbox

Open the branch in Web EditorVS CodeInsiders

Open Preview

@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 13 minutes and 42 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 291ed4e and 4020796.

📒 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

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

  • Uses reusable workflow from RequestNetwork/.github repository
  • Triggers on issue and PR opened events
  • Requires PROJECT_TOKEN secret to be configured in repository settings

Confidence Score: 4/5

  • This PR is safe to merge with minimal risk
  • The workflow is straightforward, uses standard GitHub Actions patterns, and delegates to an organization-owned reusable workflow. The only minor concern is using @main instead of a pinned version
  • No files require special attention

Important Files Changed

Filename Overview
.github/workflows/auto-project.yml New workflow to auto-add issues and PRs to project board using reusable workflow

Sequence Diagram

sequenceDiagram
    participant User
    participant GitHub
    participant Workflow as Auto Add to Project
    participant Reusable as RequestNetwork/.github Workflow
    participant Project as GitHub Project Board

    alt Issue Opened
        User->>GitHub: Open new issue
        GitHub->>Workflow: Trigger (issues.opened)
        Workflow->>Reusable: Call add-to-project.yml
        Reusable->>Project: Add issue to project board
        Project-->>Reusable: Confirmation
    else Pull Request Opened
        User->>GitHub: Open new PR
        GitHub->>Workflow: Trigger (pull_request.opened)
        Workflow->>Reusable: Call add-to-project.yml with PROJECT_TOKEN
        Reusable->>GitHub: Check for linked issues
        alt No linked issues
            Reusable->>Project: Add PR to project board
            Project-->>Reusable: Confirmation
        else Has linked issues
            Reusable->>Reusable: Skip (issue already tracked)
        end
    end
Loading

Copy link

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

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

1 file reviewed, 1 comment

Edit Code Review Agent Settings | Greptile

@MantisClone MantisClone merged commit 1553eb4 into main Jan 17, 2026
7 checks passed
@MantisClone MantisClone deleted the chore/add-auto-project-workflow branch January 17, 2026 20:25
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

1 participant