Skip to content

chore: add auto-project workflow - #136

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

chore: add auto-project workflow#136
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 15 minutes and 56 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 4ecab8c and 2927d51.

📒 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

This PR adds a GitHub Actions workflow to automatically add issues and pull requests to the RequestNetwork project board when they are opened.

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

Confidence Score: 5/5

  • This PR is safe to merge with minimal risk
  • The workflow file is simple, well-structured, and follows established patterns in the repository. It delegates to a reusable workflow from the organization's central repository, which is a best practice. The triggers are appropriate and the secret passing is correctly configured.
  • No files require special attention

Important Files Changed

FilenameOverview
.github/workflows/auto-project.ymlAdds 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: Create Issue
GitHub->>Workflow: Trigger (issues.opened)
Workflow->>Reusable: Call add-to-project.yml
Reusable->>Project: Add Issue to Project Board
Project-->>Reusable: Confirmation
else PR Opened
User->>GitHub: Create Pull Request
GitHub->>Workflow: Trigger (pull_request.opened)
Workflow->>Reusable: Call add-to-project.yml
Note over Reusable: Check if PR has linked issue
alt PR without linked issue
Reusable->>Project: Add PR to Project Board
Project-->>Reusable: Confirmation
else PR with linked issue
Note over Reusable: Skip (issue already tracked)
end
end
Loading

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