Skip to content

chore: add auto-project workflow - #15

Merged
MantisClone merged 1 commit into
mainfrom
chore/add-auto-project-workflow
Jan 18, 2026
Merged

chore: add auto-project workflow#15
MantisClone merged 1 commit into
mainfrom
chore/add-auto-project-workflow

Conversation

@MantisClone

@MantisCloneMantisClone commented Jan 17, 2026

Copy link
Copy Markdown
Contributor

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.


ClosesRequestNetwork/public-issues#130

@coderabbitai

Copy link
Copy Markdown

Warning

Rate limit exceeded

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

📒 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
Copy Markdown

Greptile Summary

Adds a GitHub Actions workflow to automatically add issues and PRs to the RequestNetwork project board when they are opened.

  • Triggers on issues.opened and pull_request.opened events
  • Uses the reusable workflow from RequestNetwork/.github repository
  • Passes PROJECT_TOKEN secret to the reusable workflow for authentication
  • Follows the same pattern as the existing pr-comments.yml workflow in this repository

Confidence Score: 5/5

  • This PR is safe to merge with no risk
  • The workflow is simple, well-structured, and follows established patterns in this repository. It uses a reusable workflow from the organization's central repository, which provides consistency and maintainability. The configuration is minimal with only the necessary trigger events and secret passing.
  • No files require special attention

Important Files Changed

FilenameOverview
.github/workflows/auto-project.ymlAdded workflow to automatically add issues and PRs to project board using reusable workflow

Sequence Diagram

sequenceDiagram
participant GH as GitHub Events
participant Workflow as auto-project.yml
participant Reusable as RequestNetwork/.github<br/>add-to-project.yml
participant Project as Project Board
alt Issue Opened
GH->>Workflow: issues.opened event
Workflow->>Reusable: Call reusable workflow
Note over Workflow,Reusable: Pass PROJECT_TOKEN secret
Reusable->>Project: Add issue to project board
end
alt PR Opened
GH->>Workflow: pull_request.opened event
Workflow->>Reusable: Call reusable workflow
Note over Workflow,Reusable: Pass PROJECT_TOKEN secret
Reusable->>Project: Check for linked issues
alt No linked issues
Reusable->>Project: Add PR to project board
else Has linked issues
Note over Reusable,Project: Skip (issue already tracked)
end
end
Loading

@MantisClone
MantisClone merged commit bd97bcc into mainJan 18, 2026
7 checks passed
@MantisClone
MantisClone deleted the chore/add-auto-project-workflow branch January 18, 2026 00:27
Sign up for freeto 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

@MantisClone