Skip to content

chore: add auto-project workflow - #15

Merged
MantisClone merged 1 commit into
mainfrom
chore/add-auto-project-workflow
Jan 17, 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
Collaborator

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 13 minutes and 33 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 a2821de and aa0828b.

📒 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

Added GitHub Actions workflow to automatically add issues and PRs to the RequestNetwork project board.

  • Triggers on issue and PR open events
  • Uses reusable workflow from RequestNetwork/.github repository
  • Passes PROJECT_TOKEN secret for authentication
  • According to PR description, PRs with linked issues won't be added (tracked via linked issue instead)

Confidence Score: 5/5

  • This PR is safe to merge with minimal risk
  • The workflow follows standard GitHub Actions patterns, delegates to a reusable workflow maintained by the same organization, and only adds automation without changing any application code
  • No files require special attention

Important Files Changed

FilenameOverview
.github/workflows/auto-project.ymlAdds GitHub Actions workflow to auto-add issues and PRs to project board using reusable workflow

Sequence Diagram

sequenceDiagram
participant Dev as Developer
participant GH as GitHub
participant Workflow as Auto-Project Workflow
participant Reusable as RequestNetwork/.github Workflow
participant Project as GitHub Project Board
alt Issue Opened
Dev->>GH: Create/Open Issue
GH->>Workflow: Trigger (issues.opened)
Workflow->>Reusable: Call add-to-project.yml
Reusable->>Project: Add Issue to Project Board
Project-->>Reusable: Success
else PR Opened
Dev->>GH: Create/Open Pull Request
GH->>Workflow: Trigger (pull_request.opened)
Workflow->>Reusable: Call add-to-project.yml
Reusable->>GH: Check for linked issues
alt No Linked Issue
Reusable->>Project: Add PR to Project Board
Project-->>Reusable: Success
else Has Linked Issue
Reusable->>Reusable: Skip (issue already tracked)
end
end
Loading

@MantisClone
MantisClone merged commit efcb84b into mainJan 17, 2026
7 checks passed
@MantisClone
MantisClone deleted the chore/add-auto-project-workflow branch January 17, 2026 20:23
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